
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.home {
  background-color: #FFFC00;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.snap-logo {
  background-image: url('https://upload.wikimedia.org/wikipedia/en/thumb/c/c4/Snapchat_logo.svg/800px-Snapchat_logo.svg.png');
  background-repeat: no-repeat;
  background-size: contain;
  width: 80px;
  height: 80px;
  margin-bottom: 200px;
}

.buttons {
  width: 100%;
  position: absolute;
  bottom: 0;
}

.btn {
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.btn.login {
  background-color: #E85D67;
}

.btn.signup {
  background-color: #4DB7FF;
}

.login-page {
  background-color: white;
  padding: 20px;
  border-radius: 25px 25px 0 0;
  margin-top: 40px;
}

h1 {
  text-align: center;
  font-size: 24px;
}

label {
  display: block;
  margin-top: 20px;
  color: #888;
  font-size: 12px;
}

input[type="text"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  margin-top: 8px;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
}

.password-wrapper {
  position: relative;
}

.eye-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 18px;
}

.checkbox {
  margin-top: 20px;
  font-size: 12px;
}

.forgot {
  display: block;
  text-align: center;
  color: #4DB7FF;
  font-size: 14px;
  margin: 20px 0;
  text-decoration: none;
}

.submit-btn {
  background-color: #ccd1d6;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  width: 100%;
}

.back {
  display: inline-block;
  padding: 20px;
  font-size: 20px;
  color: #4DB7FF;
  text-decoration: none;
}
