/* ===========================
   Login & Register
=========================== */

body {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.auth-container {
    width: 420px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.auth-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2563eb;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    outline: none;
}

.input-group input:focus {
    border-color: #2563eb;
}

.password-box {
    position: relative;
}

.password-box i {
    position: absolute;
    right: 15px;
    top: 14px;
    cursor: pointer;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    margin-top: 10px;
}

.btn:hover {
    background: #1d4ed8;
}

.google-btn {
    background: #db4437;
}

.google-btn:hover {
    background: #c1351d;
}

.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    color: #2563eb;
}

#passwordStrength {
    margin-top: 8px;
    font-size: 14px;
    font-weight: bold;
}