body {
    font-family: Arial, sans-serif;
    background-image: url('../pic/ujhatter.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    height: 100vh; 
    overflow: hidden; 
}

.container {
    position: relative; 
    top: 50%;
    transform: translateY(-50%); 
    max-width: 50%; 
}

.text-white {
    color: white !important;
}

.login-form {
    background-color: rgba(0, 0, 0, 0.4); 
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), 
                0 20px 40px rgba(0, 0, 0, 0.25), 
                0 30px 60px rgba(0, 0, 0, 0.2); 
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.login-form .card-header,
.login-form .card-body {
    background-color: inherit; 
    padding: 1rem 1.25rem; 
    border: none; 
}

.logo {
    width: 180px; 
    height: auto;
    background-color: rgba(255, 255, 255, 0.2); 
    padding: 10px; 
    border-radius: 10px; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
    animation: pulse 2s infinite alternate; 
}


/* Gomb színe és interakcióra változó színei */
.btn-primary {
    background-color: #e64f12; 
    border-color: #e64f12; 
}

.btn-primary:hover {
    background-color: #cc460e; 
    border-color: #cc460e; 
}

.btn-primary:focus, .btn-primary:active {
    background-color: #b53f0b; 
    border-color: #b53f0b; 
    box-shadow: none; 
}

/* Form input elemeinek fókusz állapota */
.form-control:focus {
    border-color: #e64f12; 
    box-shadow: 0 0 0 0.2rem rgba(230, 79, 18, 0.25); 
}


@keyframes pulse {
    0% {
        transform: scale(1); 
    }
    100% {
        transform: scale(1.1); 
    }
}


