/* General Styles */
body {
    font-family: Arial, sans-serif;
    background: url('farm bg.jpg') no-repeat center center/cover;
    text-align: center;
    margin: 0;
}
.popup-content {
    background: black;
    border: 3px solid #32cd32;
    box-shadow: 0 0 20px #32cd32;
    padding: 20px;
    border-radius: 10px;
}
/* Open Login Button */
.open-login {
    margin-top: 20%;
    padding: 10px 20px;
    font-size: 18px;
    background: #32cd32;
    color: white;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    width: auto;
    min-width: none;
}

.open-login:hover {
    background: #28a428;
}

/* Popup Styling */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    width: 320px;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

/* Neon Glowing Login Box */
.popup-content {
    background: black;
    border: 3px solid #32cd32;
    box-shadow: 0 0 20px #32cd32;
    padding: 20px;
    border-radius: 10px;
}

.popup-content h2 {
    color: #32cd32;
}

/* Input Fields */
input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #32cd32;
    background: black;
    color: white;
    text-align: center;
}

/* Login Button */
button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    background: #32cd32;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background: #28a428;
}

/* Extra Links */
.extra-links {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.extra-links a {
    color: #32cd32;
    text-decoration: none;
    font-size: 14px;
}

.extra-links a:hover {
    text-decoration: underline;
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}
