/* auth password forgot css */

.email-container {
    max-width: 600px;
    margin: 50px auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    text-align: center;
}

h1 {
    color: #3f51b5;
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #555555;
    margin-bottom: 30px;
}

.btn-reset {
    display: inline-block;
    background: linear-gradient(135deg, #6fb1fc, #4364f7);
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reset:hover {
    background: linear-gradient(135deg, #567de9, #2e50d1);
}

.footer {
    margin-top: 40px;
    font-size: 14px;
    color: #999999;
}

.login-box {
    width: 420px;
}

.login-card-body {
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.login-box-msg {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.brand-logo {
    text-align: center;
    margin-bottom: 10px;
}

.brand-logo img {
    width: 150px;
}

/* Strength Bar */
#strength-bar {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 5px;
    margin-top: 5px;
}

#strength {
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s;
}

.weak {
    background-color: #dc3545;
}

.good {
    background-color: #ffc107;
}

.strong {
    background-color: #28a745;
}

#strength-text {
    font-size: 14px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: capitalize;
}

.btn-primary {
    background: linear-gradient(135deg, #6fb1fc, #4364f7);
    border: none;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 8px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #567de9, #2e50d1);
}

a {
    font-weight: 600;
    color: #3f51b5;
}

a:hover {
    color: #1b2cb7;
}
