.password-reset-main {
display: flex;
justify-content: center;
align-items: center;
min-height: calc(100vh - 60px);
padding: 20px;
}
.password-reset-wrap {
width: 100%;
max-width: 420px;
}
.password-reset-box {
background: #fff;
border-radius: 16px;
padding: 40px 30px;
box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.password-reset-box .logo {
text-align: center;
font-size: 1.5rem;
font-weight: 700;
color: var(--primary);
margin-bottom: 30px;
}
.password-reset-box .logo i {
font-size: 2rem;
display: block;
margin-bottom: 8px;
}
.step-container {
display: none;
}
.step-container.active {
display: block;
}
.step-desc {
text-align: center;
color: var(--text-gray);
font-size: 14px;
margin-bottom: 24px;
line-height: 1.6;
}
.password-reset-box .form-group {
margin-bottom: 16px;
}
.password-reset-box .form-control {
width: 100%;
padding: 14px 16px;
border: 1px solid var(--border);
border-radius: 8px;
font-size: 15px;
transition: border-color 0.2s;
box-sizing: border-box;
}
.password-reset-box .form-control:focus {
outline: none;
border-color: var(--primary);
}
.password-reset-box .btn-primary {
width: 100%;
padding: 14px;
background: var(--primary);
color: #fff;
border: none;
border-radius: 8px;
font-size: 15px;
font-weight: 600;
cursor: pointer;
transition: background 0.2s;
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
}
.password-reset-box .btn-primary:hover {
background: var(--primary-hover);
}
.password-reset-box .btn-primary:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.password-reset-box .btn-outline {
width: 100%;
padding: 12px;
background: transparent;
color: var(--text-gray);
border: 1px solid var(--border);
border-radius: 8px;
font-size: 14px;
cursor: pointer;
margin-top: 12px;
transition: all 0.2s;
}
.password-reset-box .btn-outline:hover {
border-color: var(--primary);
color: var(--primary);
}
.timer-text {
text-align: center;
color: var(--primary);
font-size: 13px;
margin-top: 12px;
}
.back-to-login {
text-align: center;
margin-top: 24px;
padding-top: 20px;
border-top: 1px solid var(--border);
}
.back-to-login a {
color: var(--text-gray);
font-size: 14px;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 6px;
transition: color 0.2s;
}
.back-to-login a:hover {
color: var(--primary);
}
