body.login-body {
    background: url('/static/img/hatter.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: sans-serif;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.3);
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.login-box img.logo {
    max-width: 150px;
    margin-bottom: 20px;
}

.login-body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/img/hatter.jpg') no-repeat center center;
    background-size: cover;
    filter: blur(4px);
    z-index: -1;
}

.login-body input:focus {
    outline: none;
    border-color: #ff7700;
    box-shadow: 0 0 0 0.2rem rgba(255, 119, 0, 0.25);
}

a {
    color: #ff7700; /* narancssárga */
    text-decoration: none; /* ha nem akarod aláhúzni */
}

a:hover {
    text-decoration: underline; /* ha hoverre alá akarod húzni */
}

.input-with-icon {
    position: relative;
}

.input-with-icon input {
    padding-left: 35px;
    padding-right: 35px;
}

.input-with-icon .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #bbbbbb;
}

.input-with-icon .toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 1.2rem;
    color: #bbbbbb;
}

.toggle-password {
    cursor: pointer;
}

.toggle-password:hover {
    color: #525252;
}


.btn-dark {
    background-color: #343a40;
    border: none !important;
}

.btn-dark:hover {
    background-color: #fd7e14 !important;
    color: #fff !important;
    border: none !important;

}