﻿/* static/css/register.css */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

h1 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label {
  text-align: left;
  font-weight: 500;
  color: #374151;
}

input, select {
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  font-size: 1rem;
  width: 100%;
}

button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

button:hover {
  background-color: #1d4ed8;
}

.switch-link {
  margin-top: 1rem;
  color: #2563eb;
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
}
