/* Main Variables */
:root {
  --primary-color: #3498db;      /* Blue */
  --secondary-color: #f39c12;    /* Orange */
  --accent-color: #e74c3c;       /* Red */
  --success-color: #2ecc71;      /* Green */
  --text-color: #2c3e50;         /* Dark Blue-Gray */
  --light-color: #f0f8ff;        /* Light Blue */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* General Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* Logo Styles */
.logo-container {
  margin-bottom: 20px;
}

.logo-container svg {
  width: 200px;
  height: 200px;
  margin-bottom: 5px;
}

.logo-text {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-color);
  letter-spacing: 1px;
}

/* Form Styles */
h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--text-color);
}

input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 12px;
  border: 1px solid #e1e4e8;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

input[type="text"]:focus,
input[type="password"]:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #2980b9;
}

/* Error Message */
.error {
  color: var(--accent-color);
  background-color: rgba(231, 76, 60, 0.1);
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .container {
    padding: 20px;
    max-width: 90%;
  }
}

input[type="email"] {
  width: 100% !important;
} 