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

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

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

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

  padding:24px;
}

.register-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;

  font-size:16px;

  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:16px;
}

.input-field::placeholder{
  color:#64748b;
}

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

  border:none;
  border-radius:18px;

  background:#1f6b46;
  color:white;

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

  cursor:pointer;

  margin-top:8px;
}

.login-link{
  text-align:center;

  color:#94a3b8;

  text-decoration:none;

  margin-top:24px;

  font-size:15px;
}


.password-container{
  position:relative;

  width:100%;

  margin-bottom:16px;
}

.password-container .input-field{
  margin-bottom:0;
}

.toggle-password{
  position:absolute;

  top:50%;
  right:18px;

  transform:translateY(-50%);

  background:none;
  border:none;

  color:#94a3b8;

  font-size:18px;

  cursor:pointer;
}
