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

h2 {
    color: #333;
    text-align: center;
}

    .alert {
        position: fixed;
        top: 20%;
        left: 50%;
        transform: translateX(-50%);
        padding: 20px;
        background-color: #4CAF50;
        color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        font-size: 16px;
        z-index: 1000;
        display: none;
    }
    .alert button {
        margin-top: 10px;
        padding: 5px 10px;
        background-color: white;
        color: #4CAF50;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }
    .alert button:hover {
        background-color: #f1f1f1;
    }


form {
    z-index: 1111;
    margin-top: -10%;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
}

input {
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button {
    padding: 10px;
    background-color: #4caf50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #43a047;
}

p {text-align: center;
    margin-top: 15px;
}

a {
    color: #4caf50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

