body {
    font-family: Montserrat, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(45deg, #FE0000, #F55C5A);
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
    height: 100vh;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
    padding: 40px;
    text-align: center;
    width: 320px;
}

.logo {
    width: 120px; /* Adjust size as needed */
    margin-bottom: 10px;
}

.login-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.forgot-password {
    margin-bottom: 20px;
}

.forgot-password a {
    color: #FE0000;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #FE0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #ED6666;
}
