/*
|--------------------------------------------------------------------------
| SmartShop Accounts
| Login
| Register
| Verify Email
| Forgot Password
| Reset Password
|--------------------------------------------------------------------------
*/

.accounts-page{

    padding:40px 0;

    background:#f5f7fb;

}

.accounts-container{

    width:100%;

    max-width:520px;

    margin:auto;

}

.accounts-card{

    background:#ffffff;

    border-radius:24px;

    padding:45px;

    box-shadow:0 20px 70px rgba(15,35,90,.08);

    border:1px solid #edf1f8;

}

.accounts-header{

    text-align:center;

    margin-bottom:0px;

}

.accounts-logo{

    width:72px;

    height:72px;

    margin:0 auto 20px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:linear-gradient(135deg,#1d4ed8,#12368d);

    color:#fff;

    font-size:28px;

}

.accounts-title{

    margin:0;

    color:#102f75;

    font-size:34px;

    font-weight:800;

}

.accounts-subtitle{

    margin:5px 0 0;

    color:#6f778c;

    line-height:1.9;

    font-size:15px;

}

.accounts-form{

    margin-top:15px;

}

.accounts-group{

    margin-bottom:22px;

}

.accounts-label{

    display:block;

    margin-bottom:8px;

    color:#17306d;

    font-weight:700;

    font-size:14px;

}

.accounts-input{

    width:100%;

    height:56px;

    border:1px solid #dfe6f3;

    border-radius:14px;

    padding:0 18px;

    background:#fff;

    transition:.30s;

    font-size:15px;

}

.accounts-input:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}
.accounts-button{

    width:100%;

    height:56px;

    border:none;

    border-radius:14px;

    background:linear-gradient(135deg,#1d4ed8,#15388f);

    color:#fff;

    font-size:16px;

    font-weight:700;

    cursor:pointer;

    transition:.30s;

}

.accounts-button:hover{

    transform:translateY(-2px);

    box-shadow:0 14px 35px rgba(29,78,216,.22);

}

.accounts-button:active{

    transform:translateY(0);

}

.accounts-alert{

    padding:15px 18px;

    margin-bottom:22px;

    border-radius:14px;

    font-size:14px;

    line-height:1.8;

}

.accounts-alert-success{

    background:#edf9f1;

    border:1px solid #cdebd8;

    color:#1f7a46;

}

.accounts-alert-error{

    background:#fff1f1;

    border:1px solid #ffd5d5;

    color:#b42318;

}

.accounts-error{

    display:block;

    margin-top:8px;

    color:#d92d20;

    font-size:13px;

}

.accounts-divider{

    position:relative;

    margin:5px 0;

    text-align:center;

}

.accounts-divider::before{

    content:"";

    position:absolute;

    top:50%;

    inset-inline:0;

    height:1px;

    background:#e8edf5;

}

.accounts-divider span{

    position:relative;

    padding:0 18px;

    background:#fff;

    color:#7b8499;

    font-size:13px;

}

.accounts-links{

    margin-top:8px;

    text-align:center;

}

.accounts-links a{

    color:#1d4ed8;

    text-decoration:none;

    font-weight:700;

    transition:.25s;

}

.accounts-links a:hover{

    color:#102f75;

}

.accounts-links p{

    margin:2px 0;

    color:#6f778c;

}

.accounts-checkbox{

    display:flex;

    align-items:center;

    gap:10px;

    margin:18px 0 25px;

}

.accounts-checkbox input{

    width:18px;

    height:18px;

    accent-color:#1d4ed8;

}

.accounts-checkbox label{

    color:#556074;

    font-size:14px;

    cursor:pointer;

}
.accounts-input::placeholder{

    color:#9aa4b5;

}

.accounts-input:disabled{

    background:#f5f7fb;

    cursor:not-allowed;

}

.accounts-password{

    position:relative;

}

.accounts-password-toggle{

    position:absolute;

    top:50%;

    inset-inline-end:16px;

    transform:translateY(-50%);

    border:none;

    background:none;

    color:#7b8499;

    cursor:pointer;

    padding:0;

    font-size:16px;

}

.accounts-password-toggle:hover{

    color:#1d4ed8;

}

.accounts-otp{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:10px;

    margin:15px 0;

}

.accounts-otp input{

    width:100%;

    height:58px;

    border:1px solid #dfe6f3;

    border-radius:14px;

    text-align:center;

    font-size:22px;

    font-weight:700;

    transition:.30s;

}

.accounts-otp input:focus{

    outline:none;

    border-color:#2563eb;

    box-shadow:0 0 0 4px rgba(37,99,235,.10);

}

.accounts-captcha{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:18px;

    padding:16px 18px;

    border-radius:14px;

    background:#f7f9fd;

    border:1px solid #e3e9f4;

    margin-bottom:22px;

}

.accounts-captcha-question{

    color:#17306d;

    font-weight:800;

    font-size:18px;

}

.accounts-footer{

    margin-top:5px;

    text-align:center;

    color:#7b8499;

    font-size:14px;

    line-height:1.9;

}

.accounts-footer a{

    color:#1d4ed8;

    text-decoration:none;

    font-weight:700;

}

.accounts-footer a:hover{

    color:#102f75;

}
/* ==========================================
   Create Store Layout
========================================== */

.accounts-grid-2{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:25px;
    margin-top:20px;
}

.accounts-grid-3{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px;
    margin-top:20px;
}

.accounts-section{
    margin-top:35px;
}

.accounts-section-title{
    margin-bottom:20px;
}

@media (max-width:992px){

    .accounts-grid-2,
    .accounts-grid-3{

        grid-template-columns:1fr;

    }

}