/* 🎨 General Styling */
body {
    font-family: 'Amatic SC', cursive;
    background-color: #1E2A38; /* Dark blue for a treasure-like theme */
    color: #E5C100; /* Gold text */
    text-align: center;
    margin: 0;
    padding: 0;
}

/* 📜 Registration Form Styling */
#register-container, #login-container {
    max-width: 400px;
    margin: 50px auto;
    padding: 20px;
    background: #2E1B13; /* Dark parchment */
    border: 2px solid #C99C33; /* Gold border */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.5);
    text-align: center;
}

/* Adjust Headings */
h1 {
    color: #FFD700; /* Gold Title */
    text-align: center;
}

/* ✅ Form Input Fields */
input[type="text"], input[type="email"], input[type="password"], input[type="date"] {
    width: 90%; /* Prevent full-screen stretching */
    max-width: 300px; /* Keep input fields manageable */
    padding: 10px;
    margin: 8px 0;
    border: 2px solid #C99C33;
    border-radius: 6px;
    background: #3C2A1E;
    color: #FFD700;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* 💾 Submit Button */
input[type="submit"], button[type="submit"] {
    width: 100%;
    max-width: 200px; /* Keep button smaller */
    padding: 10px;
    background: linear-gradient(180deg, #C99C33, #8B6B27);
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #FFD700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

input[type="submit"]:hover, button[type="submit"]:hover {
    background: linear-gradient(180deg, #FFD700, #C99C33);
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.7);
}
