body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #cce7ff;
    color: #003366;
    flex-direction: column;
    margin: 0;
    padding: 0;
    position: relative;
}

.container {
    background: #e6f2ff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

input {
    padding: 10px;
    border: 1px solid #003366;
    border-radius: 5px;
    margin: 10px 0;
    width: 100%;
    font-size: 16px;
    background: #ffffff;
    color: #003366;
    box-sizing: border-box;
    height: 45px;
}

button {
    background-color: #3399ff;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    width: auto;
    min-width: 200px;
    height: 40px;
}

button:hover {
    background-color: #0073e6;
}

#confirmationMessage {
    color: #00509e;
}

/* Notification styles */
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    max-width: 80%;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    display: block !important;
}

.notification.success {
    background-color: #28a745;
}

.notification.error {
    background-color: #dc3545;
}

.notification.fade-in {
    opacity: 1;
    transform: translateX(-50%) translateY(-10px);
}

.notification.fade-out {
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
}

/* Cooldown Banner */
.cooldown-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffcc00;
    color: #333;
    text-align: center;
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
    width: 80%;
    max-width: 400px;
}

.cooldown-banner.show {
    display: block;
}

.hidden {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        width: 95%;
    }

    input,
    button {
        font-size: 14px;
    }

    .notification {
        font-size: 14px;
        max-width: 90%;
    }

    .logo {
        width: 150px;
        height: 150px;
    }
}
