html,body {
  font-family: 'Arial', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 100dvh;
  min-height: 460px;
}

.login-container {
  background-color: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  width: auto;
  max-width: 460px;
  text-align: center;
  margin: 10px;
}

.login-header {
  margin-bottom: 30px;
}

.login-header .user-icon {
  font-size: 5rem;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.login-header svg {
  width: 80px;
  height: 80px;
  background: linear-gradient(90deg, #ef4444 0%, #e11d48 100%);
  border-radius: 30%;
  padding: 15px;
  margin-bottom: 10px;
  color: #ffffff;
}

.login-header h2 {
  margin: 0;
  font-size: 2rem;
  color: #f1f1f1;
}

.login-header p {
  margin: 5px 0 0;
  color: #b0b0b0;
}

.divider {
  margin: 30px 0;
  color: #777;
  position: relative;
  text-align: center;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

button.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  padding: 12px 24px 12px 12px;
  margin: 12px;
  border-radius: 8px;
  font-size: 1em;
  border: none;
  color: white;
  cursor: pointer;
}

button.social-button.line:hover{
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), #06C755;
}

button.social-button.line:active{
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), #06C755;
}

.line-icon {
  width: 24px;
  height: 24px;
  background-image: url('/assets/images/line_44.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.line-divider {
  width: 1px;
  height: 20px;
  background-color: rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  margin-right: 24px;
}

button.social-button i {
  margin-right: 10px;
}

button.social-button.google {
  background-color: #db4437;
}
button.social-button.facebook {
  background-color: #4267B2;
}
button.social-button.x {
  background-color: #000;
}
button.social-button.linkedin {
  background-color: #0077b5;
}

button.social-button.line {
  background: #06C755;
}

.terms-description {
  text-align: left;
  font-size: 0.8em;
  color: #b0b0b0;
  margin-top: 25px;
  margin-bottom: 25px;
  line-height: 1.4;
}

.link:link, .link:visited, .link:active {
  color: #fff;
}
