.auth-box {
    max-width: 1050px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .05);
    overflow: hidden;
    margin-top: 0px!important;
}

.auth-side {
    background: linear-gradient( 135deg, #8B5CF6 0%, #A855F7 50%, #06B6D4 100%);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.auth-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.auth-welcome {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
}

.auth-text {
    font-size: .95rem;
    opacity: .9;
    max-width: 260px;
    text-align: center;
}

.form-control {
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    padding: 12px 14px;
    background: #fafafa;
}

.form-control:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 .15rem rgba(139, 92, 246, .15);
    background: white;
}

.btn-auth {
    background: linear-gradient( 135deg, #8B5CF6, #A855F7);
    border: none;
    border-radius: 30px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
    color: white;
}

.btn-auth:hover {
    opacity: .95;
}

.auth-error {
    display: none;
    background: #ffecec;
    color: #d8000c;
    padding: 10px;
    border-radius: 6px;
    font-size: .9rem;
    margin-bottom: 15px;
}

.password-toggle {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 13px;
    color: #999;
}

.password-meter {
    height: 6px;
    border-radius: 5px;
    background: #eee;
    margin-top: 8px;
}

.password-meter-bar {
    height: 6px;
    border-radius: 5px;
    width: 0%;
    transition: .3s;
}

.strength-text {
    font-size: .8rem;
    margin-top: 5px;
}

@media(max-width:576px) {
    .auth-box {
        margin-top: 20px!important;
    }
}