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

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

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

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

  padding:24px;
}

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

  display:flex;
  flex-direction:column;
}

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

  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;
}

.login-links{
  display:flex;
  justify-content:space-between;
  align-items:center;

  margin-bottom:24px;
}

.forgot-password{
  color:#94a3b8;
  text-decoration:none;
  font-size:14px;
}

.forgot-password:hover{
  color:white;
}

.google-link{
  background:none;
  border:none;

  color:#94a3b8;

  font-size:14px;

  cursor:pointer;
}

.google-link:hover{
  color:white;
}

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

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

  text-decoration:none;

  border:none;
  border-radius:18px;

  background:#1f6b46;
  color:white;

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

  cursor:pointer;
}

.continue-button:hover{
  opacity:.95;
}

.create-account{
  display:block;

  margin-top:20px;

  text-align:center;

  color:#94a3b8;

  text-decoration:none;

  font-size:15px;
}

.create-account:hover{
  color:white;
}
