﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #7295b1, #ffffff);
    height: 100vh;
    margin-top: 73px;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    margin-left: auto;
    margin-right: auto;
    
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    width: 220px;
   
}

h2 {
    margin-bottom: 24px;
    color: #333;
}

.input-group {
    position: relative;
    width: 100%;
}

input[type="text"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s ease;
}

input:focus {
    border-color: #0078d7;
    box-shadow: 0 0 8px rgba(0, 120, 215, 0.3);
    outline: none;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    filter: grayscale(1);
    opacity: 0.8;
}

    .toggle-password:hover {
        filter: grayscale(1);
        opacity: 1;
    }

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 5px;
    transition: background 0.3s ease;
}

.btn-login {
    background-color: #0078d7;
    color: white;
}

    .btn-login:hover {
        background-color: #005fa3;
    }

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

    .btn-secondary:hover {
        background-color: #cfcfcf;
    }

.btn-approve {
    background-color: #28a745;
    color: white;
}

    .btn-approve:hover {
        background-color: #1e7e34;
    }

.links a {
    display: inline-block;
    margin: 5px;
    color: #0078d7;
    text-decoration: none;
    font-size: 14px;
}

    .links a:hover {
        text-decoration: underline;
    }

.footer {
    height: 50px;
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #0072cf; /*#001180;*/
    color: white;
}

.sitecim {
    margin-top: auto;
    margin-bottom: auto;
    text-align: center;
}

.sarga-nyilatkozatfelirat {
    color: #dfe3e6;
}