body {
  /* Light gray background for the "outer" areas */
  background-color: #f0f0f0; 
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
}

.main-wrapper {
  /* This is your white central "tape" */
  background-color: #ffffff; 
  max-width: 1000px;
  margin: 0 auto;
  min-height: 100vh;
  
  /* ADDING SHADOWS HERE */
  /* Horizontal offset | Vertical offset | Blur radius | Spread | Color */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); 
  
  display: flex;
  flex-direction: column;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky;
  top: 0;
  z-index: 100;
    color: #333;
}

.content-grid {
  display: grid;
  /* 3 parts for content, 1 part for sidebar */
  grid-template-columns: 3fr 1fr; 
  gap: 20px;
  padding: 20px;
}

aside {
  display: flex;
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
  padding: 0px;
  border-left: 1px solid #e0e0e0;
  padding-left: 20px;
}

h3 {
  font-weight: normal; /* This removes the bold effect */
  margin-top: 0;       /* Optional: cleans up spacing at the top */
  color: #333;
    font-size: 18px;
}

#m1 {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically */
  text-align: center;
  min-height: 300px;       /* Gives it space to be centered in */
  margin: 0;               /* Reset margins to prevent offset */
  font-size: 18px;
  color: #333;
}

#m2 {
  font-size: 15px;
  color: #333;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 10px;
  margin-top: auto; /* Pushes footer to the bottom */
    color: #333;
}

footer img {
  width: 150px;
  height: auto;
  /* Optional: small shadow for the Neocities logo */
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 0;
}



#button{
    width: 150px;
  height: 40px;
}





 /* Page background (light like 2018 sites) */
body {
  background: #f0f2f5;
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Card */
.auth-card {
  max-width: 350px;
  margin: 60px auto;
  padding: 25px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
}

/* Title */
.auth-card h2 {
  margin-top: 0;
  text-align: center;
  color: #333;
}

/* Inputs */
.auth-card .input-group {
  margin-bottom: 15px;
}

.auth-card label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #555;
  font-size: 0.9em;
}

.auth-card input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccd0d5;
  border-radius: 4px;
  box-sizing: border-box;
}

/* 2018 style button (flat, simple) */
button {
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: white;
  padding: 10px;
  background: #4267b2; /* Facebook-like */
  border: 3px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background: #365899;
}

button:active {
  background: #29487d;
}

/* Google button fix */
.auth-card .google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  background: #fff;
  color: #444;
  border: 1px solid #ddd;
}

.auth-card .google-btn:hover {
  background: #f7f7f7;
}

.auth-card .google-btn b {
  color: #4285F4;
  font-size: 1.1em;
}

/* Divider (simple 2018 style) */
.auth-card .divider {
  text-align: center;
  margin: 20px 0;
  color: #999;
  font-size: 0.85em;
  position: relative;
}

.auth-card .divider::before,
.auth-card .divider::after {
  content: "";
  height: 1px;
  width: 40%;
  background: #ddd;
  position: absolute;
  top: 50%;
}

.auth-card .divider::before { left: 0; }
.auth-card .divider::after { right: 0; }

.auth-card .divider span {
  background: #fff;
  padding: 0 10px;
}

/* Toggle text */
.auth-card .toggle-text {
  text-align: center;
  font-size: 0.9em;
  margin-top: 15px;
}

.auth-card .toggle-text a {
  color: #385898;
  text-decoration: none;
  font-weight: bold;
}

.auth-card .toggle-text a:hover {
  text-decoration: underline;
}

/* Status */
#status-msg {
  margin-top: 15px;
  font-size: 0.9em;
  text-align: center;
  font-weight: bold;
}










