body {
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
}

/* Page wrapper with breathing space */
.auth-wrapper {
    min-height: 100vh;
/*    padding: 100px 20px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.auth-card {
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.auth-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

.auth-card-register {
    width: 100%;
    max-width: 850px;
    background: #ffffff;
    border-radius: 18px;
    padding: 45px 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.auth-card:hover {
    box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}

/* Heading */
.auth-title {
    font-weight: 700;
    font-size: 26px;
    color: #111827;
}

.auth-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 30px;
}

/* Floating inputs */
.form-floating > .form-control {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.form-floating > .form-control:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

/* Button */
.btn-smart {
    background: #4f46e5;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-smart:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(79,70,229,0.2);
}

/* Divider */
.divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 40%;
    background: #e5e7eb;
    position: absolute;
    top: 50%;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.divider span {
    padding: 0 10px;
    font-size: 12px;
    color: #9ca3af;
}

.social-btn {
    border-radius: 12px;
    padding: 10px;
    font-weight: 500;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #6b7280;
}

a {
    text-decoration: none;
}