/* Authentication Pages Styles (Login/Register) */

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #00cc00;
    color: #fff;
}

.step-label {
    font-size: 0.875rem;
    color: #6c757d;
}

.step.active .step-label {
    color: #212529;
}

.step-line {
    width: 80px;
    height: 2px;
    background-color: #e9ecef;
    margin: 0 20px 30px;
    transition: all 0.3s ease;
}

.step-line.active {
    background-color: #00cc00;
}

/* Password Strength */
.password-strength {
    margin-top: -10px;
}

.password-strength-bar {
    height: 4px;
    background-color: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.password-strength-fill {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* OAuth Divider */
.divider {
    position: relative;
    text-align: center;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #dee2e6;
}

.divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #6c757d;
    font-size: 0.875rem;
}

/* Custom radio buttons */
.btn-check:checked + .btn-outline-success {
    background-color: #00cc00;
    border-color: #00cc00;
}

.btn-outline-success {
    color: #00cc00;
    border-color: #00cc00;
}

.btn-outline-success:hover {
    background-color: #00cc00;
    border-color: #00cc00;
    color: #fff;
}

/* Login Page Specific */
.login-remember {
    font-size: 0.875rem;
}

.login-links {
    font-size: 0.875rem;
}

.login-links a {
    color: #00cc00;
    text-decoration: none;
}

.login-links a:hover {
    text-decoration: underline;
}