@import url('https://fonts.googleapis.com/css2?family=Sandstorm&display=swap');

:root {
  --text: #1E293B;
  --background: #FFFFFF;
  --tint: #6C63FF;
  --primary: #6C63FF;
  --secondary: #C4B5FD;
  --accent: #818CF8;
  --error: #ef4444;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Sandstorm', sans-serif;
  background: url('https://styleupp-public.s3.us-east-1.amazonaws.com/nocti-background.png') center center / cover no-repeat fixed;
  color: var(--text);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 90%;
}

h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

p {
  font-size: 16px;
  margin-bottom: 20px;
}

button {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 10px;
}

button:hover {
  background-color: #574fe0;
}

img.logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
