:root{
  /* Color palette */
  --orange: rgb(205 144 81);   
  --grey-green: rgb(80 95 91);    
  --off-white: rgb(247 246 242);  
  --tan: rgb(225 199 172);  
  --brown-green: rgb(143 134 93); 
  --teal: rgb(67 180 192);

  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.78);
  --shadow: 0 10px 28px rgba(0,0,0,.28);
}
body{
  margin: 0;
  font-family: "Source Sans Pro", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
}

/* Background img + Dark overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('seven_bg_home.jpg') center / cover no-repeat;
    opacity: 0.9;
    z-index: -2;
}

body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(1200px 700px at 50% 10%, rgba(0,0,0,.35), rgba(0,0,0,.40));
  z-index: -1;
  box-sizing: border-box;
}

/* Logo */
.top-left-image {
    position: fixed;
    top: 14px;
    left: 14px;
    width: 200px;
    height: auto;
    z-index: 10;
}

.content {
    width: min(1100px, 92%); 
    margin: 0 auto;
    padding: 50px 18px 60px;
    text-align:center;
}

.content h1{
  margin: 0 0 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
  font-size: clamp(28px, 3.2vw, 35px);
  text-shadow: 0 8px 20px rgba(0,0,0,.35);
  margin-bottom: 30px;
}

.card{
  width: 400px;
  margin: 0 auto; 
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--shadow);
  background-color: rgba(185, 140, 95, 0.75);  
  border: 1px solid rgba(255 255 255 / .14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px) saturate(1.2);
  -webkit-backdrop-filter: blur(6px) saturate(1.2);
}

.form-container{
    max-width: 500px;
    margin: 20px auto;
    padding: 20px;
}

  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 5px;
    letter-spacing: 0.3px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
  }
  .form-group input {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box; 
    background: rgba(255 255 255 / .45);
    border: 1px solid rgba(255 255 255 / .25);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .15s ease, background .15s ease;
  }
  .form-group input:focus {
    border-color: var(--orange);
    background: rgba(255 255 255 / .3);
    outline: none;
  }
.submit-btn {
    /* Center the button */
    display: block !important;
    margin: 22px auto 0 !important;
    
    /* Inherit the Pill/Glass look from our .btn class */
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border: none !important;
    border-radius: 999px !important;
    
    /* Sizing to match Medium */
    width: min(280px, 80%);
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,.2);
}

  /* Button Hover Highlight */
.submit-btn:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  filter: brightness(1.08);
}
.submit-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}
.register-link {
  display: inline-block;
  margin-top: 14px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.register-link:hover {
  color: var(--teal);
  text-decoration: underline;
}