﻿* {
    border: 0px;
    margin: 0;
    padding: 0;
    font-family: Roboto;
    color: #383838;
}

.container {
    width: 300px;
    border-radius: 16px;
    margin: 80px auto;
    position: relative;
    box-shadow: 0px 0px 31px rgba(0, 0, 0, 0.09);
    padding: 30px;
    box-sizing: border-box;
}

input {
    padding: 5px 0px;
    border-bottom: 1px solid #c7c7c7;
    width: 100%;
    box-sizing: border-box;
    color: #383838;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 1px;
}

input:focus {
    border-bottom: 2px solid #3ea7e1;
    margin-bottom: 0px;
}

input:focus + label {
    transform: scale(0.8);
    top: -20px;
    left: 0px;
    color: #0000ff;
}

form > div {
    margin: 10px 0px 30px 0;
    position: relative;
}

form > div > label {
    color: #757575;
    font-weight: 700;
    font-size: 12px;
}

input[type=submit] {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 30px auto 0px auto;
    color: #ffffff;
    border-radius: 30px;
    cursor: pointer;
    display: block;
    width: auto;
    padding: 10px 25px;
    background: linear-gradient(to right, #38a6e3, #02feef);
    border: 0px;
    letter-spacing: 2px;
}

input[type=submit]:hover {
    background-color: #6556D1;
}

#error {
    display: none;
    color: red;
    font-weight: 300;
}

#error.active {
    display: block;
}

h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #383838;
}

h2 {
    text-align: center;
    margin: 5px 0px 100px 0px;
    font-size: 11px;
    font-weight: 400;
    color: #757575;
}

.passwordreset {
    margin-top: -25px;
}
.passwordreset > a {
    color: #757575;
    font-size: 10px;
    font-weight: 300;
    text-decoration: none;
}

/*--------------------------------- Szürke háttér -----------------------------------------------------------------*/
#graybackground {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

#graybackground.active {
    display: block;
}

/*--------------------------------- Betöltés -----------------------------------------------------------------------------*/

.loader {
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: none;
}

.loader::before, .loader::after {
    content: '';
    display: block;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.loader::before {
    border: 10px solid rgba(243, 243, 243, 0.5); /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    animation: spin 2s linear infinite;
}

.loader::after {
    border: 10px solid rgba(243, 243, 243, 0.5); /* Light grey */
    border-top: 10px solid #3498db; /* Blue */
    animation: spin 3s linear infinite reverse;
}

.loader.active {
    display: block;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.loginrightversion {
    position: absolute;
    line-height: 30px;
    bottom: 0px;
    right: 34px;
    color: #808080;
    font-size: 10px;
}