/* ==========================================================================
   Contact Page Specific CSS
   ========================================================================== */

/* Common Form Input Styling */
.contact-input {
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
    padding: 10px;
    background-color: #FFFFFF0F;
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    letter-spacing: 0%;
}

.contact-input::placeholder {
    color: #838E9E;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.contact-input:focus {
    box-shadow: 0 0 0 2px #2D68FF;
}

.contact-input--textarea {
    resize: none;
}

.form-submit {
    transition: all 0.5s ease-in-out;
}

.form-submit:hover {
    background-color: #2D68FF;
    transform: scale(20px);
}