/* =====================================
SOCIALELITE
FORGOT PASSWORD
PART 1
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:"Inter",sans-serif;
}

body{

background:#0f172a;

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

padding:30px;

}

.page{

width:100%;

display:flex;

justify-content:center;

align-items:center;

}

.forgot-card{

width:100%;

max-width:460px;

background:#ffffff;

border-radius:18px;

padding:40px;

box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.logo-area{

text-align:center;

margin-bottom:30px;

}

.logo{

width:72px;

margin-bottom:15px;

}

.logo-area h1{

font-size:2rem;

font-weight:800;

color:#111827;

margin-bottom:10px;

}

.logo-area p{

font-size:15px;

line-height:1.6;

color:#6b7280;

}

.input-group{

margin-bottom:24px;

}

.input-group label{

display:block;

margin-bottom:8px;

font-size:14px;

font-weight:600;

color:#374151;

}

.input-group input{

width:100%;

height:52px;

padding:0 15px;

border:1px solid #d1d5db;

border-radius:10px;

font-size:15px;

outline:none;

transition:.25s;

}

.input-group input:focus{

border-color:#2563eb;

box-shadow:0 0 0 3px rgba(37,99,235,.12);

}
/* =====================================
FORGOT PASSWORD
PART 2
===================================== */

.send-btn{

width:100%;

height:54px;

border:none;

border-radius:10px;

background:#2563eb;

color:#fff;

font-size:16px;

font-weight:700;

cursor:pointer;

transition:.25s;

}

.send-btn:hover{

background:#1d4ed8;

}

.send-btn:disabled{

opacity:.7;

cursor:not-allowed;

}

.divider{

margin:28px 0 22px;

text-align:center;

position:relative;

}

.divider::before{

content:"";

position:absolute;

top:50%;

left:0;

width:100%;

height:1px;

background:#e5e7eb;

}

.divider span{

position:relative;

background:#fff;

padding:0 16px;

font-size:14px;

color:#6b7280;

}

.login-link{

display:block;

text-align:center;

text-decoration:none;

font-weight:700;

color:#2563eb;

transition:.25s;

}

.login-link:hover{

color:#1d4ed8;

}

.loading-overlay{

position:fixed;

inset:0;

display:flex;

justify-content:center;

align-items:center;

flex-direction:column;

background:rgba(15,23,42,.82);

visibility:hidden;

opacity:0;

transition:.25s;

z-index:9999;

}

.loading-overlay.active{

visibility:visible;

opacity:1;

}

.loader{

width:52px;

height:52px;

border:5px solid rgba(255,255,255,.25);

border-top:5px solid #fff;

border-radius:50%;

animation:spin .8s linear infinite;

margin-bottom:18px;

}

#loadingText{

color:#fff;

font-size:15px;

font-weight:600;

}

.toast{

position:fixed;

right:20px;

bottom:20px;

min-width:280px;

max-width:360px;

padding:16px 18px;

border-radius:10px;

font-size:14px;

font-weight:600;

color:#fff;

transform:translateY(120px);

opacity:0;

transition:.3s;

z-index:10000;

}

.toast.show{

transform:translateY(0);

opacity:1;

}

.toast.success{

background:#16a34a;

}

.toast.error{

background:#dc2626;

}

@keyframes spin{

100%{

transform:rotate(360deg);

}

}

@media (max-width:600px){

body{

padding:18px;

}

.forgot-card{

padding:28px 22px;

}

.logo{

width:64px;

}

.logo-area h1{

font-size:1.7rem;

}

.toast{

left:16px;

right:16px;

min-width:auto;

max-width:none;

}

  }
