body {
    display: flex;
    align-items: center;
    background-color: #000;
    color: white;
    font-family: Arial, sans-serif;
    margin: auto;
    padding: 0;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: auto;
}

.contact-form {
    margin: auto;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

    .contact-form h1 {
        font-size: 24px;
        margin-bottom: 8px;
        text-align: center;
        color: #FED100;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

.institutional-form-subtitle {
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #FED100;
}

.contact-form__field {
    margin-bottom: 18px;
    text-align: left;
}

.contact-form__label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #FED100;
    font-weight: 500;
}

.contact-form__input,
.contact-select-wrapper select,
.contact-form__input--textarea {
    width: 100%;
    height: 42px;
    padding: 10px;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    transition: all 0.3s ease;
}

    .contact-form__input:hover,
    .contact-select-wrapper select:hover,
    .contact-form__input--textarea:hover {
        border-color: #FED100;
        box-shadow: 0 0 10px rgba(254, 209, 0, 0.3);
        transform: translateY(-2px);
    }

    .contact-form__input:focus,
    .contact-select-wrapper select:focus,
    .contact-form__input--textarea:focus {
        outline: none;
        border-color: #FED100;
        box-shadow: 0 0 15px rgba(254, 209, 0, 0.5);
        transform: translateY(-2px);
    }

.contact-select-wrapper select {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

    .contact-select-wrapper select option {
        background-color: #000;
        color: white;
    }

.contact-form__input--textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form__button {
    background: linear-gradient(135deg, #FED100 0%, #f4c430 100%);
    color: #000;
    padding: 12px 25px;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    min-height: 45px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 209, 0, 0.3);
    letter-spacing: 1px;
}

    .contact-form__button:hover {
        background: linear-gradient(135deg, #f4c430 0%, #FED100 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(254, 209, 0, 0.5);
    }

    .contact-form__button:active {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(254, 209, 0, 0.4);
    }

.contact-form__input::placeholder,
.contact-form__input--textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .contact-form {
        width: 100%;
        padding: 20px;
        max-height: 95vh;
        max-height: 95dvh;
    }

        .contact-form h1 {
            font-size: 22px;
        }
}

@media (max-height: 600px) {
    body {
        padding: 10px;
    }

    .contact-form {
        max-height: 95vh;
        max-height: 95dvh;
    }
}
