@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #4293BA;
  --light-blue: #C6F2FC;
  --text-dark: #031F42;
  --bg-light: #F8FCFF;
}

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

body {
  background: linear-gradient(180deg, var(--light-blue), var(--bg-light));
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.auth-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  width: 400px;
  max-width: 90%;
  padding: 40px;
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header .logo {
  height: 60px;
  margin-bottom: 10px;
}

.auth-header h1 {
  color: var(--text-dark);
  font-size: 26px;
  font-weight: 700;
}

.auth-header h1 span {
  color: var(--primary);
}

.auth-header p {
  color: #405468;
  font-size: 14px;
}

.auth-content form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(66, 147, 186, 0.15);
}

button {
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #347fa2;
}

.auth-footer {
  text-align: center;
  margin-top: 18px;
  font-size: 14px;
  color: #405468;
}

.auth-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.error {
  background: #ffe6e6;
  color: #b30000;
  padding: 10px;
  border-radius: 6px;
  text-align: center;
  font-size: 14px;
}
