﻿body {
    font-family: Arial, sans-serif;
    /*background: url('../lib/Image/LoginIMG.jpg') no-repeat center center fixed;*/
    background-size: cover; /* Ensures the image covers the entire screen */
    background-attachment: fixed; /* Fixes the background in place */
    background-position: center; /* Centers the image */
    color: white;
    text-align: center;
    margin: 0;
    background-color: cornflowerblue;
}


.login-container {
    margin-top: 10%;
    /*background: rgba(255, 255, 255, 0.1);*/
    /* background: rgba(0, 0, 0, 0.7);*/
    background: rgba(255, 255, 255, 0.3);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h2 {
    color: white;
    margin-bottom: 25px;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    input:focus {
        outline: none;
        /* background-color: rgba(255, 255, 255, 0.2);*/
    }

button {
    width: 95%;
    padding: 10px;
    background-color: #4CAF50;
    border: none;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-top: 25px;
}

    button:hover {
        transform: scale(1.05);
    }

a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

    a:hover {
        color: #FFD700;
    }
