/**
 * Login stránka - styly
 */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.login-page {
    font-family: 'Fira Sans', sans-serif;
    background: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

/* Logo v levém horním rohu */
.login-logo {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 10;
}

.login-logo img {
    height: 88px;
    width: auto;
}

/* Kontejner pro přihlašovací box */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 0%;
    position: relative;
    z-index: 5;
    width: 50vw;
}

/* Přihlašovací box */
.login-box {
    width: 100%;
    max-width: 400px;
    padding: 50px;
    padding-top: 66px;
    box-shadow: 0px 2px 30px 0px rgba(0, 49, 69, 0.04);
    box-sizing: border-box;
    border-radius: 16px;
    position: relative;
}

.login-title {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 16px;
    text-align: center;
}

.login-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 44px;
}

/* Chybová zpráva */
.login-error {
    background: #F1D0D6;
    /* border-left: 3px solid #dc2626; */
    color: #490715;
    padding: 12px 16px;
    padding-top: 13px;
    border-radius: 4px;
    font-size: 18px;
    margin-bottom: 24px;
    line-height: 1.4;
    position: absolute;
    bottom: -68px;
    left: 0px;
    height: 52px;
    width: 100%;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.icon--login-error {
    margin-right: 12px;
}
/* Formulář */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Pole formuláře */
.login-field {
    position: relative;
    display: flex;
    align-items: center;
}

.login-field__icon {
    position: absolute;
    left: 16px;
    width: 18px !important;
    height: 18px !important;
    color: var(--color-form-text);
    z-index: 2;
}
.login-field__icon.icon--uzivatel {
    width: 21px !important;
    height: 21px !important;
}

.login-field__input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 48px;
}

/* Tlačítko přihlášení */
.login-btn {
    width: 100%;
    height: 56px;
    background: var(--color-primary);
    color: var(--color-primary-text);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.login-btn:hover {
    background: var(--color-primary-hover);
}

.login-btn:active {
    background: var(--color-primary-active);
}

/* Odkaz na zapomenuté heslo */
.login-forgot {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    transition: color 0.2s ease;
}

/* Footer */
.login-footer {
    position: fixed;
    bottom: 20px;
    left: 15%;
    width: 360px;
    text-align: center;
    font-size: 12px;
    color: #999;
    z-index: 5;
}
.login-wave {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    /*background-color: #b91c1c;*/
    background-image: url("/assets/img/agel-tvar.svg");
    background-size: cover;
    background-position: center;
    background-position: left;
}

/* Responzivní design */
@media (max-width: 1024px) {
    .login-container {
    }
    
    .login-wave {
        width: 35%;
    }
    
    .login-footer {
        left: 10%;
    }
}

@media (max-width: 768px) {
    .login-logo {
        top: 20px;
        left: 20px;
    }
    
    .login-logo img {
        height: 50px;
    }
    
    .login-container {
        padding: 0 20px;
    width: 100vw;
        justify-content: center;
    }
    
    .login-wave {
        display: none;
    }
    
    .login-box {
        max-width: 100%;
    }
    
    .login-footer {
        left: 20px;
        right: 20px;
        width: auto;
    }
}
