body {
  background-image: 
    linear-gradient(rgba(168, 5, 5, 0.65), rgba(0, 0, 0, 0.6)), 
    url("123.png");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  margin: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  color: white;
}

/* TOP HEADER */
.top-info {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 10px 20px;
    background: rgba(0,0,0,0.4);
    font-size: 14px;
}

/* LOGO */
.logo {
    width: 140px;
    height: 55px;
    background: linear-gradient(135deg, #b30000, #ff6600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    padding: 10px;
    margin: 10px auto;
}

/* NAV */
nav, .nav {
    text-align: center;
    margin-top: 10px;
}

a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: bold;
}

a:hover {
    color: orange;
}

/* TOP INFO TEXT */
.Wh, .L, .Cc {
    color: orange;
    margin: 0;
}

/* HERO TEXT */
.ttp {
    color: white;
    font-size: 48px;
    margin: 40px 20px;
    max-width: 500px;
}

/* MAIN CARD */
.lastPart {
    margin: 30px auto;
    background: rgba(255, 80, 0, 0.25);
    width: 90%;
    max-width: 900px;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* FEATURES */
.al, .dr, .ins {
    color: white;
    margin: 10px 0;
}

.zero {
    font-size: 40px;
    color: orange;
    font-weight: bold;
    text-align: center;
}

/* AUTH BUTTONS */
.auth-buttons {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
}

button {
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #ff3300, #ff9900);
    color: white;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* LOGIN / SIGNUP */
.form-container {
    width: 320px;
    margin: 100px auto;
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    outline: none;
}

/* BACK LINK */
.back-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: orange;
}
