body{
    background: linear-gradient(135deg, #4b0082, #6a0dad, #8e44ad);
    min-height: 100vh;
    font-family: 'Segoe UI', sans-serif;
}

.auth-wrapper{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: -120px;
}

.card{
    border: none;
    border-radius: 22px;
    background: rgba(255,255,255,0.88);
backdrop-filter: blur(12px);
    padding: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    
    transition: 0.3s ease;
}

.card:hover{
    transform: translateY(-4px);
}


.logo{
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.4);
    margin-bottom: 8px;
}

.tagline{
    color: #f3e8ff;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.btn{
    width: 100%;
    height: 54px;
    border-radius: 18px;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.btn-primary{
    background: linear-gradient(135deg, #6a0dad, #8e44ad);
    border: none;
}

.btn-primary:hover{
    transform: scale(1.03);
    background: linear-gradient(135deg, #5b0ca3, #7d3cb5);
}

.btn:active{
    transform: scale(0.98);
}

.text-center.mt-6{
    margin-top: 20px;
}

.text-center.mt-3{
    margin-top: 15px !important;
}




.form-label{
    font-weight: 600;
    color: #5a189a;
    margin-bottom: 8px;
}

.form-control{
    height: 52px;
    border-radius: 14px;
    border: none;
    background: #f8f4ff;
    padding: 0 16px;
    font-size: 15px;
}

.form-control:focus{
    box-shadow: 0 0 0 3px rgba(106,13,173,0.15);
    background: white;
}

.login-link{
    color: #666;
}

.login-link a{
    color: #6a0dad;
    font-weight: 600;
    text-decoration: none;
}

.login-link a:hover{
    text-decoration: underline;
}


