* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f5f5f5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 400px;
}

.login-form {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 10px;
}

.logo-icon {
  position: relative;
  width: 100px;
}


/* Typography */
.title {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  text-align: left;
}

.subtitle {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 40px;
}

/* Form */
.form {
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 24px;
}

.input-label {
  display: block;
  color: #999;
  font-size: 14px;
  margin-bottom: 8px;
}

.input-field {
  width: 100%;
  padding: 16px;
  border: none;
  background-color: #f8f9fa;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  outline: none;
  transition: background-color 0.2s;
}

.input-field:focus {
  background-color: #e9ecef;
}

.password-wrapper {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
  padding: 0;
}

.eye-icon {
  width: 20px;
  height: 20px;
}

.forgot-password {
  text-align: right;
  margin-bottom: 30px;
}

.forgot-password a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
}

.forgot-password a:hover {
  color: #666;
}

.login-btn {
  width: 100%;
  background: #07BCE9;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.login-btn:hover {
  background: #0097a7;
}

.login-btn:active {
  background: #00838f;
}

/* Register Link */
.register-link {
  text-align: center;
  color: #666;
  font-size: 14px;
}

.register-link a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  margin-left: 4px;
}

.register-link a:hover {
  text-decoration: underline;
}

/* Desktop Responsive */
@media (min-width: 768px) {
  .container {
    max-width: 450px;
  }

  .login-form {
    padding: 50px 40px;
  }

  .title {
    font-size: 32px;
  }

  .subtitle {
    font-size: 17px;
  }
}

/* Large Desktop */
@media (min-width: 1024px) {
  body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }

  .login-form {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
}
