﻿body 
{
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.card.shadow-lg 
{
    border-radius: 25px !important;
    border: none !important;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.btn-success:hover 
{
    background: linear-gradient(45deg, #157347, #198754) !important;
    transform: scale(1.02) !important;
    box-shadow: 0 8px 15px rgba(25, 135, 84, 0.3) !important;
}

#togglePassword 
{
    border-top-right-radius: 12px !important;
    border-bottom-right-radius: 12px !important;
    border-left: none !important;
    background-color: transparent !important;
    border-color: #dee2e6 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

#togglePassword:hover 
{
    color: #198754 !important;
    background-color: #f8f9fa !important;
}

.g-recaptcha 
{
    margin: 10px auto !important;
    display: table !important;
}

.text-danger.small 
{
    font-weight: 500 !important;
    display: block !important;
    margin-top: 4px !important;
    animation: fadeInDown 0.3s ease-out !important;
}

hr 
{
    opacity: 0.1;
}

.input-group > .form-floating > .form-control 
{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-right: none !important;
}

.form-check-input:checked 
{
    background-color: #198754 !important;
    border-color: #198754 !important;
}

.form-check-input:focus 
{
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.15) !important;
    border-color: #198754 !important;
}

.text-danger.small 
{
    display: block !important;
    line-height: 1.2;
    margin-bottom: 5px;
}
.text-success 
{
    color: #198754 !important;
    text-decoration: none !important;
    font-weight: 600;
    transition: 0.2s;
}

.text-success:hover 
{
    color: #157347 !important;
    text-decoration: underline !important;
}

.btn-outline-primary
{
    border-width: 2px;
    background-color: rgba(13, 110, 253, 0.05);
}

.profile-avatar-wrapper
{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.profile-avatar-wrapper:hover 
{
    border-color: #0dcaf0;
    filter: brightness(90%);
}

.profile-avatar 
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-placeholder 
{
    color: #adb5bd;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.profile-placeholder i 
{
    font-size: 2rem;
}

.edit-badge 
{
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: #0dcaf0;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    font-size: 0.8rem;
}

.profile-avatar-wrapper:hover .edit-badge 
{
    transform: scale(1.1);
    background-color: #0baccc;
}

.form-control:focus 
{
    border-color: #0dcaf0;
    box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.15);
}

.form-floating > label 
{
    color: #6c757d !important;
}

@media (max-width: 576px) 
{
    .card-body 
    {
        padding: 1.5rem !important;
    }
    .card.shadow-lg 
    {
        border-radius: 15px !important;
    }
}

@keyframes fadeInDown 
{
    from 
    {
        opacity: 0;
        transform: translateY(-5px);
    }
    to 
    {
        opacity: 1;
        transform: translateY(0);
    }
}