body {
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
}

.auth-wrapper {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-card {
    border: none;
    border-radius: 18px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.auth-title {
    font-weight: 700;
    letter-spacing: -0.5px;
}

.form-control {
    border-radius: 12px;
    padding: 12px;
}

.input-group-text {
    border-radius: 12px 0 0 12px;
    background: #f1f5f9;
}



.google-btn {
    border-radius: 12px;
    padding: 12px;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e5e7eb;
    transition: .2s;
}

.google-btn:hover {
    background: #f9fafb;
}

.divider-light {
    position: relative;
    text-align: center;
    color: #999;
}

.divider-light::before,
.divider-light::after {
    content: "";
    position: absolute;
    width: 40%;
    height: 1px;
    background: #ddd;
    top: 50%;
}

.divider-light::before {
    left: 0;
}

.divider-light::after {
    right: 0;
}



.btn-auth-submit {
    border-radius: 30px;
    padding: 12px;
    background: black;
    color: white;
    font-weight: 600;
}

.btn-auth-submit:hover {
    background: rgb(36, 36, 36);
    border: black;
    color: #e5e7eb;
}


