/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #003366, #FFD700);
    margin: 0;
}

/* Containers */
.prompt-container, .login-container {
    background: white;
    padding: 25px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    text-align: center;
    width: 350px;
    transition: all 0.3s ease-in-out;
}

/* Titles */
h2 {
    font-size: 22px;
    color: #003366;
    margin-bottom: 15px;
}

/* Buttons */
button {
    background: #FFD700;
    color: #003366;
    border: none;
    padding: 12px 18px;
    margin: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s, transform 0.2s;
}

button:hover {
    background: #ccac00;
    transform: scale(1.05);
}

/* Login Form */
input {
    width: 90%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
}

input:focus {
    border-color: #FFD700;
    outline: none;
    box-shadow: 0px 0px 5px rgba(255, 215, 0, 0.7);
}

/* Login Container */
.login-container {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
