.setup-container {
    max-width: 500px;
    /* margin: auto; */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.setup-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(46, 57, 68, 0.1);
    overflow: hidden;
    position: relative;
}

.setup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #124E66, #2E3944);
}

.setup-header {
    padding: 25px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid rgba(115, 141, 146, 0.1);
}

.setup-header h3 {
    margin: 0;
    color: #2E3944;
    font-size: 1.5rem;
    font-weight: 600;
}

.setup-body {
    padding: 30px;
}

.otp-inputs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.otp-input {
    width: 45px;
    height: 45px;
    border: 2px solid #D3D9D4;
    border-radius: 8px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E3944;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: #124E66;
    box-shadow: 0 0 0 3px rgba(18, 78, 102, 0.1);
    outline: none;
}

.form-floating {
    margin-bottom: 20px;
}

.form-floating>.form-control {
    padding: 1rem 0.75rem;
}

.form-control:focus {
    border-color: #124E66;
    box-shadow: 0 0 0 3px rgba(18, 78, 102, 0.1);
}

.password-strength {
    height: 4px;
    background: #e9ecef;
    margin-top: 5px;
    border-radius: 2px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
    background: #124E66;
}

.btn-primary {
    background: #124E66;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #2E3944!important;
    /* transform: translateY(-2px); */
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #124E66;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 40px;
    color: white;
}

/* .setup-step {
    display: none;
} */

.setup-step.active {
    display: block;
}

.timer {
    color: #748D92;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 10px;
}

.resend-link {
    color: #124E66;
    text-decoration: none;
    font-weight: 500;
}

.resend-link:hover {
    text-decoration: underline;
}

.password-requirements {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.requirement-item {
    color: #748D92;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.requirement-item i {
    margin-right: 8px;
    color: #124E66;
}

.requirement-item.valid {
    color: #124E66;
}