﻿body {
    font-family: Arial, sans-serif;
    background-image: url('img/6N4A9740.jpg');
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0;
    height: 100vh;
}

.login-container {
    background-color: #3A3C38;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
}

h1 { 
    color: #ffffff;
    font-size: 2.5rem;
    margin: 0; 
    padding: 1rem; 
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    border: 2px solid #ffffff; 
    border-radius: 8px; 
    background-color: rgba(0, 0, 0, 0.5); 
    display: inline-block; 
    margin-bottom: 1.5rem;
}


form {
    display: flex;
    flex-direction: column;
}

.btn-container {
    margin-top: 12px;
    text-align: center;
}


label {
    margin-top: 0.5rem;
    color: #ffffff;
    margin-bottom: 0.2rem;
}

input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.btn-novopan {
    background-color: #ffffff;
    border: 2px solid #333;
    border-radius: 20px;
    color: #333;
    padding: 8px 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 240px;
}

    .btn-novopan:hover {
        background-color: #333;
        color: #ffffff;
        border-color: #ffffff;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    }


.error-message {
    color: #d9534f; 
    background-color: #f2dede; 
    border: 1px solid #ebccd1; 
    padding: 10px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    margin-top: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .error-message::before {
        content: "⚠️"; 
        margin-right: 8px;
    }
