
body {
    font-family: 'Bowlby One SC', cursive, Arial, sans-serif;
    background: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 0;
}




.form-container {
    max-width: 500px;
    margin: 40px auto 60px auto;
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    margin-top: 20px;
    color: #444;
}

.form input[type="text"],
.form input[type="email"],
.form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form input[type="text"]:focus,
.form input[type="email"]:focus,
.form textarea:focus {
    border-color: #2575fc;
    outline: none;
    background-color: #f0f7ff;
}

.form textarea {
    min-height: 100px;
    line-height: 1.4;
}

.form button[type="submit"] {
    margin-top: 30px;
    background-color: #2575fc;
    color: white;
    padding: 14px 25px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form button[type="submit"]:hover {
    background-color: #195ecc;
}


/* Responsive */
@media (max-width: 600px) {
    .form-container {
        margin: 20px 15px 40px 15px;
        padding: 20px;
    }

    .intro h1#typed-text {
        font-size: 2em;
    }
}
