/* ==========================================
   HÓVÁR LISTMONK THEME
   ========================================== */

body {
    background: #f4f1e8 !important;
    color: #001f2d !important;
    font-family: Georgia, "Times New Roman", serif !important;
}

.container.wrap {
    max-width: 720px !important;
    margin: 50px auto !important;
    background: transparent !important;
}

/* ==========================================
   HEADER
   ========================================== */

.header {
    text-align: center !important;
    margin-bottom: 35px !important;
}

.header .logo {
    display: flex !important;
    justify-content: center !important;
}

.header .logo img {
    display: none !important;
}

.header .logo a {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    text-decoration: none !important;
}

.header .logo a::before {
    content: "";
    width: 80px;
    height: 80px;
    display: block;

    background-image: url("https://www.hovar.hu/logo/hovar-logo-new.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header .logo a::after {
    content: "Hóvár Egyesület";
    color: #001f2d;
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
    font-family: Georgia, "Times New Roman", serif;
}

/* ==========================================
   LOGIN BOX
   ========================================== */

section.login {
    background: #f4f1e8 !important;
    border: 1px solid #d8d3c6 !important;
    padding: 50px !important;
    box-shadow: 12px 12px 0 rgba(0,31,45,.08) !important;
}

section.login form {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

section.login h2 {
    text-align: center !important;
    font-size: 42px !important;
    font-weight: 500 !important;
    margin-bottom: 35px !important;
    color: #001f2d !important;
}

/* ==========================================
   INPUTS
   ========================================== */

input {
    width: 100%;
    background: #ffffff !important;
    border: 1px solid #001f2d !important;
    border-radius: 0 !important;
    color: #001f2d !important;
    padding: 14px !important;
    margin-top: 6px !important;
    font-size: 15px !important;
}

label {
    color: #001f2d !important;
    font-weight: 600 !important;
}

p {
    margin-bottom: 20px !important;
}

/* ==========================================
   BUTTON
   ========================================== */

.button,
button,
input[type="submit"] {
    background: #001f2d !important;
    color: #f4f1e8 !important;
    border: 1px solid #001f2d !important;
    border-radius: 0 !important;
    padding: 14px 24px !important;
    cursor: pointer !important;
    transition: all .2s ease !important;
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background: transparent !important;
    color: #001f2d !important;
}

/* ==========================================
   FORGOT PASSWORD
   ========================================== */

section.login .small {
    text-align: center !important;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

section.login .small a {
    color: #001f2d !important;
    text-decoration: none !important;
    border-bottom: 1px solid #001f2d;
}

section.login .small a:hover {
    opacity: .7;
}

/* ==========================================
   PUBLIC PAGE
   ========================================== */

.home-options {
    margin-top: 25px !important;
}

.home-options a {
    color: #001f2d !important;
}

/* ==========================================
   FOOTER
   ========================================== */

footer.container {
    text-align: center !important;
    margin-top: 40px !important;
    color: #8d8679 !important;
    font-size: 14px !important;
}

.gabor-credit {
    color: #001f2d !important;
    text-decoration: none !important;
    border-bottom: 1px solid #001f2d;
    transition: all .2s ease;
}

.gabor-credit:hover {
    background: #001f2d;
    color: #f4f1e8 !important;
    padding: 2px 6px;
}

/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

    .header .logo a::before {
        width: 55px;
        height: 55px;
    }

    .header .logo a::after {
        font-size: 28px;
    }

    section.login {
        padding: 25px !important;
    }
}