
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body, html {
  height: 100%;
  background: #051448;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  position: relative;
}

.login-box {
  background-color: transparent;
  max-width: 400px;
  width: 100%;
    padding-top: 100px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 20px;
}

h2 {
  margin-bottom: 10px;
}

p a {
  color: #00aaff;
  text-decoration: none;
}

.input-group {
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid #ccc;
  margin: 15px 0;
}

.input-group .icon {
  padding: 10px;
  color: #ccc;
}

.input-group input {
  border: none;
  outline: none;
  background: transparent;
  padding: 10px;
  width: 100%;
  color: white;
}

.email-btn {
  width: 100%;
  padding: 12px;
  background-color: #f5428d;
  border: none;
  margin: 15px 0;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.email-btn:hover {
  background-color: #e63377;
}

.forgot {
  display: block;
  text-align: center;
  margin-bottom: 15px;
  color: #00aaff;
  font-size: 0.9em;
  text-decoration: none;
}

.google-btn,
.facebook-btn,
.apple-btn {
  width: 100%;
  padding: 12px;
  border: none;
  margin-bottom: 10px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.google-btn {
  background-color: white;
  color: black;
}

.facebook-btn {
  background-color: #3b5998;
  color: white;
}

.apple-btn {
  background-color: black;
  color: white;
}

.footer {
  text-align: left;
  margin-top: 30px;
  font-size: 0.8em;
  color: #a0a0a0;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 10px 0 0;
}

.footer a {
  color: #00aaff;
  text-decoration: none;
}

.help-btn {
position: relative;
  bottom: 0;
  float: right;
  background-color: #f5428d;
  color: white;
  border: none;
  padding: 10px 15px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
}
