/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    background-color: lime; /* Lime background */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Authentication Box */
.auth-container {
    background: white; /* White background for contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 300px;
}

/* Home Button */
.home-btn {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-block;
    background: rgba(255,255,255,0.95);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    text-decoration: none;
    z-index: 100;
}
.home-btn img {
    width: 56px;
    height: auto;
    display: block;
}
.home-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* adjust for dark mode */
body.dark-mode .home-btn {
    background: rgba(255,255,255,0.06);
    box-shadow: none;
    backdrop-filter: blur(4px);
}

/* Form Styling */
.auth-container input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Buttons */
.auth-btn {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: green; /* Dark green button */
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.auth-btn:hover {
    background-color: darkgreen;
}

/* Links */
.auth-container p {
    margin-top: 15px;
    font-size: 14px;
}

.auth-container a {
    color: green;
    text-decoration: none;
}

.auth-container a:hover {
    text-decoration: underline;
}
body.dark-mode { background-color: green; }