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

body{
  min-height:100vh;
  background:#020817;
  font-family:Arial,sans-serif;
}

.reset-screen{
  min-height:100vh;

  display:flex;
  justify-content:center;
  align-items:center;

  padding:24px;
}

.reset-content{
  width:100%;
  max-width:380px;

  display:flex;
  flex-direction:column;
}

.logo{
  width:140px;
  height:140px;

  margin:0 auto 20px;

  object-fit:contain;
}

.title{
  color:white;

  text-align:center;

  font-size:34px;
  font-weight:700;

  margin-bottom:10px;
}

.subtitle{
  color:#94a3b8;

  text-align:center;

  margin-bottom:32px;
}

.input-field{
  width:100%;
  height:58px;

  border:1px solid #1e293b;
  border-radius:18px;

  background:#0f172a;
  color:white;

  padding:0 18px;

  font-size:16px;

  outline:none;

  margin-bottom:20px;
}

.reset-button{
  width:100%;
  height:58px;

  border:none;
  border-radius:18px;

  background:#1f6b46;
  color:white;

  font-size:18px;
  font-weight:700;

  cursor:pointer;
}

.back-link{
  text-align:center;

  color:#94a3b8;

  text-decoration:none;

  margin-top:24px;

  font-size:15px;
}
