:root{
  --blue:#3ea5ce;
  --dark:#024988;
}

*{margin:0;padding:0;box-sizing:border-box}

body{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f7fb;
  font-family:Inter,sans-serif;
}

.alert-error {  padding: 19px 0px;  text-align: center; color: red; margin-top: -21px; font-size: 14px;  /* color: #001822; */ font-weight: 700; }
 

.error{
  color: red;
  font-size: 14px;
}

#email-error{
  color: red;
  font-size: 14px;
}

.text-danger{
  color: red;
  font-size: 14px;
}

.logo{text-align:center; padding:15px 0 34px;}
.logo img{height:4rem}

.wrapper{
  width:1100px;
  max-width:95%;
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  display:flex;
  box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* LEFT */
.left{
  width:45%;
  padding:55px;
}
h2{
  font-size:26px;
  margin-bottom:10px;
  color:var(--blue);
}
p{
  font-size:14px;
  color:#666;
  margin-bottom:28px;
}
input{
  width:100%;
  padding:15px;
  border-radius:12px;
  border:1px solid #ddd;
  margin-bottom:22px;
}

/* BUTTON + TIMER */
.btn-wrap{
  position:relative;
  padding: 12px 0px;
}
.btn-wrap button{
  width:100%;
  padding:15px;
  border:none;
  border-radius:14px;
  background:var(--blue);
  color:#fff;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}
.btn-wrap button.disabled{
  cursor:not-allowed;
  opacity:.7;
}

.timer{
  position:absolute;
  right:18px;
  top:50%;
  transform:translateY(-50%);
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:rgba(0,0,0,.25);
  padding:4px 8px;
  border-radius:8px;
  display:none;
}

/* SUCCESS MESSAGE */
.reset-success{
  display:none;
  margin-top:18px;
  padding:14px 16px;
  border-radius:12px;
  background:#e9f6fb;
  border-left:4px solid var(--blue);
  display:flex;
  gap:12px;
  align-items:flex-start;
  animation:fadeSlide .35s ease;
}
.reset-success .icon{
  width:22px;
  height:22px;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.reset-success strong{
  color:var(--dark);
  font-size:14px;
}
.reset-success p{
  margin:2px 0 0;
  font-size:13px;
  color:#444;
}

@keyframes fadeSlide{
  from{opacity:0;transform:translateY(-6px)}
  to{opacity:1;transform:translateY(0)}
}

.back{
  margin-top:22px;
}
.back a{
  color:var(--blue);
  text-decoration:none;
  font-size:14px;
}

/* RIGHT */
.right{
  width:55%;
  padding:60px;
  color:#fff;
  background:
    linear-gradient(rgba(2,73,136,.88),rgba(2,73,136,.88)),
    url('https://images.unsplash.com/photo-1522708323590-d24dbb6b0267');
  background-size:cover;
  background-position:center;
}
.right h3{font-size:32px;margin-bottom:18px}
.right p{font-size:15px;color:#e8f4fb;margin-bottom:20px}
.right ul{list-style:none}
.right li{margin-bottom:12px}
.right li i{color:#9ad7f0;margin-right:8px}

.right-follow{
  margin-top:35px;
  padding-top:20px;
  border-top:1px solid rgba(255,255,255,.25);
}
.right-follow-icons{
  display:flex;
  gap:12px;
}
.right-follow-icons a{
  width:40px;
  height:40px;
  border-radius:50%;
  background:rgba(255,255,255,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.right-follow-icons a:hover{
  background:#fff;
  color:var(--dark);
}

/* RESPONSIVE */
@media(max-width:900px){
  .wrapper{flex-direction:column}
  .left,.right{width:100%}
}