/* ContactMe.razor scoped styles - do not impact other components */
.contact-form-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid #e3eaf3;
    padding: 2.2rem 2.2rem 1.5rem 2.2rem;
    position: relative;
}
.contact-form-wrap .contact-phone {
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}
.contact-form-wrap label {
    font-weight: 500;
    color: #37517e;
    margin-bottom: 0.3rem;
    letter-spacing: 0.01em;
}
.contact-form-wrap .form-control {
    border-radius: 12px;
    border: 1px solid #cfd8dc;
    font-size: 1.05rem;
    padding: 0.7rem 1rem;
    margin-bottom: 0.7rem;
    background: #f7fbfd;
    transition: border-color 0.2s;
}
.contact-form-wrap .form-control:focus {
    border-color: #29abe2;
    box-shadow: 0 2px 8px rgba(41,171,226,0.08);
    outline: none;
}
.full-width-textarea {
    width: 100% !important;
    min-height: 120px !important;
    max-height: 260px !important;
    border-radius: 14px !important;
    background: #f7fbfd !important;
    border: 1px solid #cfd8dc !important;
    font-size: 1.08rem !important;
    padding: 1rem !important;
    box-shadow: 0 2px 8px rgba(41,171,226,0.06);
    resize: vertical !important;
    transition: border-color 0.2s;
}
.full-width-textarea:focus {
    border-color: #29abe2 !important;
    box-shadow: 0 4px 16px rgba(41,171,226,0.12);
    outline: none;
}
.contact-form-wrap .btn {
    border-radius: 999px;
    padding: 0.7rem 1.6rem;
    font-size: 1.08rem;
    font-weight: 600;
    background: #29abe2;
    color: #fff;
    border: none;
    box-shadow: 0 2px 8px rgba(41,171,226,0.10);
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
}
.contact-form-wrap .btn:disabled {
    background: #b3e0f7;
    color: #fff;
    cursor: not-allowed;
}
.contact-form-wrap .btn:hover:not(:disabled),
.contact-form-wrap .btn:focus:not(:disabled) {
    background: #1976d2;
    box-shadow: 0 4px 16px rgba(25,118,210,0.13);
    transform: scale(1.04);
}
.contact-form-wrap .alert {
    border-radius: 12px;
    font-size: 1.02rem;
    margin-top: 1.1rem;
    padding: 0.9rem 1.2rem;
}
@media (max-width: 600px) {
    .contact-form-wrap {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        max-width: 98vw;
    }
}
