.form-style {
    max-width: 1300px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-style h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color:  hsl(280, 91%, 42%);
}

/* Inputs */
.form-style input,
.form-style textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.2s ease;
}

/* Focus state (this is what makes it feel modern) */
.form-style input:focus,
.form-style textarea:focus {
    border-color:  hsl(280, 91%, 42%);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79,36,99,0.1);
}

/* Textarea */
.form-style textarea {
    min-height: 120px;
    resize: vertical;
}

/* Buttons */
.form-style input[type="submit"],
.form-style input[type="reset"] {
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    margin-right: 10px;
    background-color:  hsl(280, 91%, 42%);
    color: white;
    cursor: pointer;
    transition: 0.2s ease;
}

.form-style input[type="reset"] {
    background-color: #ccc;
    color: #333;
}

.form-style input[type="submit"]:hover {
    background-color: #3a1b4a;
}

.form-style input[type="reset"]:hover {
    background-color: #bbb;
}

.form-style input::placeholder,
.form-style textarea::placeholder {
    color: #bcbcbc;
    opacity: 1;
}

.form-style label {
    display: block;
    margin-bottom: 6px;
    color: #4f2463;
    font-weight: bold;
}

#form-status {
    margin-top: 15px;
    color: hsl(280, 91%, 42%);
    font-weight: bold;
}

.contact-layout {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;

    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-intro {
    flex: 1;
    text-align: center;
}

.contact-intro p {
    margin-top: 20px;
}

.contact-image {
    margin-top: 30px;
}

.contact-image img {
    width: 50%;
    max-width: 450px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
}

.contact-layout .form-style {
    flex: 1;
    max-width: 600px;
    margin: 0;
}

@media (max-width: 768px) {

    .contact-layout {
        flex-direction: column;
        padding: 0 20px;
    }

    .contact-layout .form-style {
        width: 100%;
        max-width: 100%;
    }

    .contact-image img {
        max-width: 100%;
    }

}



.form-style label {
    position: absolute;
    left: -9999px;
}


.form-style label {
    position: absolute;
    left: -9999px;
}

.form-style,
.form-style h2,
.form-style input,
.form-style textarea {
    -webkit-text-fill-color: initial;
    color: #333;
}

.form-style h2 {
    color: hsl(280, 91%, 42%);
}