/* VŠEOBECNÉ NASTAVENIA CELEJ STRÁNKY */
html, body {
  margin: 0;
  padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
}

.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4d4;
  font-family: Inter, 'Segoe UI', Tahoma, sans-serif;
}

/* ROZDELENIE NA 2 POLOVICE */

.login-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
}


/* ĽAVÁ POLOVICA */

.login-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    position: relative;
    padding: 2rem;
    box-sizing: border-box;
}

.login-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 190px;
    height: auto;
}

.login-left-content {
    width: 600px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 24px;
}

.login-left-content h2 {
    margin: 0;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.login-left-content h3 {
    margin: 0.2rem 0 1rem 0;
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 800;
    color: #111827;
}

.login-left-content p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4b5563;
}


/*  PRAVÁ POLOVICA*/

.login-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EAF7C0;
    padding: 2rem;
    box-sizing: border-box;
}

/* hlavný wrapper formulára */
.login-card {
    width: 440px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
}

    /* nadpis "Vitajte!" */
    .login-card h1 {
        width: 100%;
        margin: 0;
        text-align: center;
        font-family: Inter, 'Segoe UI', Tahoma, sans-serif;
        font-size: 40px;
        font-weight: 400;
        line-height: 1.1;
        font-style: normal;
        letter-spacing: 0;
        color: #1E1E1E;
    }

/* form layout */
#account {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mb-3 {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* labely nad inputmi */
.login-card .form-label {
    display: block;
    margin: 0;
    font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    color: #1E1E1E;
}

/* inputy */
.login-card .form-control {
    width: 100%;
    height: 40px;
    padding: 10px 12px;
    border-radius: 4px;
    border: none;
    xbackground: #F5F5F5;
    font-size: 14px;
    line-height: 20px;
    color: #1E1E1E;
    box-sizing: border-box;
    box-shadow: none;
}

    .login-card .form-control::placeholder {
        color: #A3A3A3;
    }

    .login-card .form-control:focus {
        outline: none;
        box-shadow: 0 0 0 1px #7CB9E8;
        background: #FFFFFF;
    }

/* riadok: checkbox + zabudnuté heslo */
.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    min-height: 24px;
}

    .login-options .form-check {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .login-options .form-check-input {
        margin: 0;
        width: 16px;
        height: 16px;
        border-radius: 2px;
    }

    .login-options .form-check-label {
        margin: 0;
        font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
        font-size: 13px;
        line-height: 18px;
        font-weight: 400;
        color: #1E1E1E;
    }

    .login-options a {
        color: #66B5E8;
        text-decoration: none;
        font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
        font-size: 13px;
        line-height: 18px;
        font-style: normal;
        white-space: nowrap;
    }

        .login-options a:hover {
            text-decoration: underline;
        }

/* tlačidlo lgin*/
.login-card .btn-primary {
    width: 100%;
    height: 42px;
    padding: 0 16px;
    border-radius: 4px;
    font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 0;
    background: #66B5E8;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
}

    .login-card .btn-primary:hover {
        background: #57A9DE;
    }

/* validačné chyby */
.login-card .text-danger {
    font-size: 12px;
    line-height: 16px;
    margin-top: 2px;
}
