﻿body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #ff9a9e, #fad0c4, #a18cd1, #fbc2eb);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 40px;
    width: 350px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    text-align: center;
}

    .login-box input {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 10px;
        border: none;
        outline: none;
    }

    .login-box button {
        width: 100%;
        padding: 10px;
        border-radius: 10px;
        border: none;
        background-color: rgba(255,255,255,0.5);
        cursor: pointer;
        font-weight: bold;
    }

        .login-box button:hover {
            background-color: rgba(255,255,255,0.7);
        }

.login-logo {
    display: block;
    margin: 0 auto 10px auto; /* centers horizontally and adds space below */
    width: 175px; /* adjust size as needed */
    height: auto;
}

footer {
    text-align: center;
    padding: 20px;
    color: #fff; /* alb */
    font-weight: bold; /* bold */
    font-size: 0.9rem;
    background: none; /* fără fundal */
}

    footer a {
        color: #fff; /* link alb, la fel ca textul */
        text-decoration: none;
    }

        footer a:hover {
            text-decoration: underline; /* opțional, simplu la hover */
        }
