

body {
    background: linear-gradient(to right, blue, #3498db, #87CEFA, #b0c4de, white);    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: red;
}

.login-container {
    background-color: white;
    padding: 40px; 
    border-radius: 10px;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: lightning 3s infinite;
}

@keyframes lightning {
    0%, 100% {
        text-shadow: none;
    }
    25%, 75% {
        text-shadow: 0 0 20px black, 0 0 20px black;
    }
    50% {
        text-shadow: 0 0 40px black, 0 0 40px black, 0 0 40px black;
    }
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-size: 18px; /* Increase label font size */
}

input {
    font-size: 16px; /* Increase input font size */
    padding: 10px; /* Add padding for more space within input fields */
    background-color: transparent;
    border-radius: 10px;
}


button {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

select {
    font-size: 16px; /* Increase input font size */
    padding: 10px; /* Add padding for more space within input fields */
    background-color: white;
    border-radius: 10px;
}
