﻿
body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Arial', sans-serif;
    background: url('../pic/lemugood2.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
}

.login-form-label{
    font-size: 15px !important;
}


.login-form {
}

.login-form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background: #daa520;
    color: black;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

    .login-form button:hover {
        background: #daa520; /* Sötétebb arany szín */
        color:white;
    }
* {
    box-sizing: border-box;
}
.tabs {
    margin-top: 5%;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 100%;
    max-height: 700px;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 10px;
    /*background: rgba(0, 0, 0, 0.5);  Átlátszó fekete réteg */
}

.tab-buttons {
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    border-start-start-radius: 10px;
    border-start-end-radius: 10px;
}

.tab-button {
    background: transparent;
    padding: 7px;
    width: 49%;
    cursor: pointer;
    border: none;
    font-size: 16px;
    color: white;
    border-radius: 10px;
}

    .tab-button.active {
        color: black;
        background: #daa520;
    }

.tab-content {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    border-end-start-radius: 10px;
    border-end-end-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    height: 60%;
}

    .tab-content label{
        font-size: 11px;
    }

    .tab-content a {
        text-decoration: none;
        color:aquamarine;
    }
    .footer {
        font-family: 'Open Sans', sans-serif;
        display: flex;
        background-color: rgba(0, 0, 0, 0.7);
        position: absolute;
        bottom: 0;
        height: 5%;
        width: 100%;
        padding: 10px;
        justify-content: center; /* Vízszintesen középre */
        align-items: center; /* Függőlegesen középre */
    }
.form-check-input {

    width: 20px;
    height: 20px;
}
.memory {
    display: flex; /* Flexbox aktiválása */
    justify-content: left; /* Elemek elhelyezése egymás mellett */
    align-items: center; /* Függőleges igazítás (opcionális) */
    padding: 10px;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: rgba(0,0,0,0.4);
    /*background-color: #000; #fefefe;*/
    width: 740px; /* Full width */
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
}

