body {
    background-color: #f8f9fa;
    display: flex;
    min-height: 100vh;
    align-items: center;
}

:root {
    --primary-color: #4e73df;
    --secondary-color: #f8f9fa;
}

.login-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.logo {
    text-align: center;
    margin-bottom: 30px;
}
.logo img {
    /* max-width: 150px; */
}
.form-control {
    padding: 12px;
    margin-bottom: 0px;
}
.btn-login {
    background-color: #4e73df;
    color: white;
    padding: 12px;
    font-weight: 600;
    margin-top: 10px;
}
.btn-login:hover {
    background-color: #3a5bc7;
    color: white;
}
.links {
    text-align: center;
    margin-top: 20px;
}
.divider {
    position: relative;
    margin: 20px 0;
    text-align: center;
}
.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: -1;
}
.divider span {
    background-color: #fff;
    padding: 0 15px;
    color: #777;
}
.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}
.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}




.register-container {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 50px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.btn-register {
    background-color: #4e73df;
    color: white;
    padding: 12px;
    font-weight: 600;
    margin-top: 10px;
}
.btn-register:hover {
    background-color: #3a5bc7;
    color: white;
}
.password-strength {
    height: 5px;
    margin-top: -10px;
    margin-bottom: 15px;
    background-color: #eee;
}
.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s;
}



.password-reset-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
}
.logo i {
    font-size: 1.8rem;
    margin-right: 10px;
}

.btn-reset {
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    font-weight: 600;
    border: none;
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s;
}
.btn-reset:hover {
    background-color: #3a5bc7;
    color: white;
}
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}
.steps::before {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e0e0e0;
    z-index: 1;
}
.step {
    text-align: center;
    z-index: 2;
    position: relative;
    width: 30%;
}
.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
}
.step.active .step-circle {
    background-color: var(--primary-color);
    color: white;
}
.step-text {
    font-size: 0.85rem;
    color: #999;
}
.step.active .step-text {
    color: var(--primary-color);
    font-weight: 500;
}
.back-to-login {
    text-align: center;
    margin-top: 20px;
}
.verification-input {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
.verification-input input {
    flex: 1;
    text-align: center;
    font-size: 1.2rem;
    height: 50px;
}
.countdown {
    color: #666;
    font-size: 0.9rem;
    text-align: right;
    margin-top: -15px;
    margin-bottom: 15px;
}
.countdown span {
    color: var(--primary-color);
    font-weight: bold;
}










