﻿.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-image: url('/images/background.png');
    background-size: cover; /* kad užpildytų visą ekraną */
    background-position: center; /* centruoja paveikslėlį */
    background-repeat: no-repeat; /* nekartotų paveikslėlio */
}

.login-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 300px; 
    backdrop-filter: blur(6px);
}

    .login-container h2 {
        margin: 0 0 10px 0;
        text-align: center;
        color: #01075B;
        font-size: 26px;
        font-weight: 600;
    }

    .login-container p {
        margin: 0;
        text-align: center;
        color: #333;
        font-size: 16px;
    }
    

.login-button-container {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    width: 100%;
}

.login-button-container button {
    display: block;
    width: 100%;
}

.login-input {
    padding: 8px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
}

.login-input:focus {
    border-color: #01075B;
    outline: none;
    box-shadow: 0 0 5px rgba(1, 7, 91, 0.5);
}