
body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    height: 100dvh;
    background-color: #f4f4f4;
}

.container {
    padding:0px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* Centers the buttons horizontally */
    padding-bottom: 5%;
    height: 100%;
    
    
    /* Optional padding for better spacing */
    box-sizing: border-box;
    background-color: #f0f0f0;
}

.button {
    width: 80%;
    max-width: 300px;
    padding: 15px;
    margin: 10% 0;
    font-size: 18px;
    text-align: center;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    /* Smooth color change */
}

.button:hover {
    background-color: #0056b3;
}

.popup {
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: rgb(248, 255, 239);
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    display: none;
    z-index: 1000;
    opacity: 1;
    transition: opacity 1s ease-out;
}

.popup .close {
    display: block;
    text-align: right;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

/* CSS classes for success and error styling */
.success {
    background-color: #00ff10; /* Bright green for success */
    color: black; /* White text for contrast */
    border: 1px solid #008000; /* Optional border for success */
}

.error {
    background-color: #ff4d4d; /* Bright red for error */
    color: #fff; /* White text for contrast */
    border: 1px solid #800000; /* Optional border for error */
}