/* Modern Login Form Styles */
.modern-login-container {
  max-width: 600px;
  margin: 30px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  font-family: "Prompt", sans-serif;
}

.login-tabs {
  display: flex;
  border-bottom: 1px solid #e1e8ed;
}

.login-tab {
  flex: 1;
  padding: 15px;
  text-align: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #666;
  font-weight: 500;
  transition: all 0.3s ease;
  font-family: "Prompt", sans-serif;
}

.login-tab.active {
  color: #667eea;
  border-bottom: 2px solid #667eea;
}

.login-tab:hover {
  color: #667eea;
}

.login-tab-content,
.signup-tab-content {
  display: none;
  padding: 30px;
}

.login-tab-content.active,
.signup-tab-content.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #2c3e50;
  font-size: 14px;
  font-family: "Prompt", sans-serif;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: "Prompt", sans-serif;
}

.form-control:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-group {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0;
}

.login-btn,
.signup-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Prompt", sans-serif;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.login-btn:hover,
.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.signup-redirect {
  text-align: center;
}

.signup-redirect h3 {
  margin: 0 0 10px;
  font-size: 24px;
  color: #2c3e50;
  font-family: "Prompt", sans-serif;
}

.signup-redirect p {
  margin: 0 0 20px;
  color: #666;
  font-family: "Prompt", sans-serif;
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #e74c3c;
  font-family: "Prompt", sans-serif;
}

.success-message {
  background: #efe;
  color: #363;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #27ae60;
  font-family: "Prompt", sans-serif;
}

@media (max-width: 768px) {
  .modern-login-container {
    margin: 20px;
    border-radius: 8px;
  }

  .login-tab-content,
  .signup-tab-content {
    padding: 20px;
  }
}
