/* Alap stílusok a bejelentkezési oldalhoz */
body {
    font-family: "Maven Pro", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    background: linear-gradient(315deg, 
        rgba(0,0,0,1) 10%, 
        rgba(20,20,20,1) 30%, 
        rgba(3,0,46,1) 60%, 
        rgba(3,0,46,1) 90%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
}

/* ......................................... */

@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 50%;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.6;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.8;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}

/* .............................................. */

.btn.btn-primary {
    background: rgba(3,0,46,1) 60%; 
    border: 0px;
}

/* .............................................. */

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.login-header {
	color: white;
    text-align: center;
}

.login-block {
   width: 100%;
    max-width: 480px;
    padding: 20px;
}

.login-modal {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.login-modal-content {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

.login-modal-tabs {
    display: flex;
    justify-content: space-between;
}

.login-modal-tabs button {
    flex: 1;
    padding: 10px;
    cursor: pointer;
    border: 1px solid white;
    margin-bottom: -1px;
    background: 0 0;
    border: 1px solid #EEE;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
    border-bottom: 1px solid #EEE;
}

.login-modal-tabs button.active {
    color: #495057;
    background-color: #fff;
    border-bottom: 0px solid #EEE;
    background: #EEE;
}

.login-modal-tabs button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: center;
    background-color: #fff;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}

.login-modal-tabs button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    transform: rotate(90deg);

}

.login-modal-tabs button.active::after {
    background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
    transform: rotate(0deg);
}

.login-modal-column {
    display: none;
    background: #EEE;
    padding: 10px 10px 10px 10px;
    border: 1px solid #EEE;
    border-top: 0px solid #EEE;
}

.login-modal-column.active {
    display: block;
}

.login-form-group {
    margin-bottom: 15px;
}

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

.login-form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* .............................................. */

@media only screen and (max-width: 768px) {

    .login-container {
        height: auto;
        padding: 40px 0px;
    }


}