:root {
  --primary-brown: #A87C5F;
  --soft-peach: #FAD6C9;
  --cloud-white: #FDFDFD;
  --pastel-pink: #F9C5D5;
  --pastel-blue: #C9E4F6;
  --pastel-yellow: #FDF1B8;
  --pastel-purple: #D9CBEF;
  --accent-mint: #D5F5E3;
  --text-dark: #5C4A3A;
  --background-cream: #E8D4B8;


/* Center everything vertically + horizontally */
body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column; /* keeps the header on top */
  align-items: center;    /* horizontal centering */
  justify-content: flex-start; /* keep header at top, content below */
  min-height: 100vh;
}


h1, h2, h3 {
  color: var(--primary-brown);
  font-weight: 700;
}

a {
  color: var(--pastel-purple);
  text-decoration: none;
}

a:hover {
  color: var(--pastel-pink);
}


.card {
  background: var(--background-cream);
  border-radius: 20px;
  padding: 24px;
  border: 2px solid var(--pastel-blue);
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
}

.card h2 {
  color: var(--primary-brown);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-dark);
  opacity: 0.85;
}

.site-logo {
  max-width: 380px;   /* adjust to taste */
  height: auto;
  display: block;
  margin: 0 auto;
}


.site-header {
  padding: 20px;
  display: flex;
  justify-content: center;
}

.site-logo {
  width: 160px;
  height: auto;
}

/* Center the container */
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 40px;
}

/* Layout */
body {
  background: linear-gradient(to bottom, #fefcff, #f7f3ff);
  font-family: "Nunito", sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

}

/* Center the login card */
.login-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffffcc;
  backdrop-filter: blur(8px);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 380px;
}



.login-card h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #6a5e8e;
}

.login-card p {
  font-size: 16px;
  color: #8a7bb5;
  margin-bottom: 30px;
}


/* Cloud buttons centered and snug */
.cloud-button {
  display: inline-block;
  padding: 16px 24px;
  margin: 12px auto;
  border-radius: 40px;
  background: #ffffff;
  border: 3px solid #e5dfff;
  box-shadow: 0 6px 0 #d3c8ff;
  font-weight: 700;
  color: #6a5e8e;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.2s ease;
  text-align: center;
}


.cloud-button:hover {
  background: #f3edff;
  box-shadow: 0 6px 0 #c7baff;
}

.cloud-button:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 #c7baff;
}

/* Variants */
.signup-cloud {
  background: #fff7ff;
  border-color: #ffd9f7;
  box-shadow: 0 6px 0 #f5bde8;
  color: #b05fa8;
}

.signup-cloud:hover {
  background: #ffeaff;
}

.discord-cloud {
  background: #eef2ff;
  border-color: #cdd6ff;
  box-shadow: 0 6px 0 #b8c2ff;
  color: #5865F2;
}

.discord-cloud:hover {
  background: #e3e8ff;
}