@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

html {
    height: 100%;
    margin: 0px;
}

body {
    background-color: #FFFFFF;
    height: 100%;
    margin: 0px;
    font-family: 'Inter', Inter, sans-serif;
    font-size: 12px;
    line-height: 15px;
}

.container {
    display: flex;
    height: calc(100% - 105px);
    align-items: stretch;
}

.left-part {
    flex-grow: 4;
    display: flex;
    justify-content: center;
}

.right-part {
    flex-grow: 3;
    background-image: url("wave.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.logo > img {
    position: absolute;
    left: 50px;
    top: 38px;
}

.form-box {
    align-self: center;
}

.password-area{
    margin-top: 8px;
    margin-bottom: 34px;
}

input[type="text"] {
    border: 1px solid #CDE4DA;
    box-sizing: border-box;
    font-size: 14px;
    padding: 10px 16px;
    margin: 8px 0;
    width: 100%;
}

input[type="password"] {
    border: 1px solid #CDE4DA;
    border-radius: 4px;
    box-sizing: border-box;
    width: 38px;
    height: 38px;
    text-align: center;
    background: white;
    margin-right: 16px;
    color: #ABB5BE;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border: 1px solid #e20074;
    outline: none;
}

input[type="password"].filled {
    border: 1px solid #e20074;
}

::placeholder, ::-webkit-input-placeholder {
    color: #ABB5BE;
    font-size: 16px;
}

input[type="submit"] {
    width: 66px;
    height: 37px;
    background-color: #e20074;
    color: #FFFFFF;
    margin: 8px 2px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.footer {
    background: #262626;
    height: 105px;
    font-size: 14px;
}

.footer__content {
    display: flex;
    align-items: center;
    padding: 2rem;
    gap: 3rem;
}

.footer__links-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-between;
}


@media (max-width: 1420px) {
    .footer__links-wrapper {
        flex-direction: column-reverse;
        align-items: flex-end;
        justify-content: center;
    }
}

.footer__links {
     display: flex;
     gap: 15px;
     flex: 1;
     justify-content: flex-end;
 }

.footer__link {
     color: #ffffff;
     text-decoration: none;
     border: none;
     background-color: transparent;
 }

.img-center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.copyrights {
    margin-top: 20px;
    color: #171717;
}

.copyrights > a {
    color: #17a2b8;
    text-decoration: none;

}

.topnav {
    background-color: #e20074;
    overflow: hidden;
    position: absolute;
    height: 100px;
    width: 100%;
}

.language {
    position: absolute;
    float: right;
    right: 50px;
    top: 38px;
}

.logout-link {
    text-decoration: none;
    color: #e20074;
}

.start-page__link{
    border: 1px solid #e20074;
    background: #FFFFFF;
    width: 140px;
    height: 47px;
    padding: 10px 16px;
    text-decoration: none;
    color: #152536;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
}

p.error-message {
    font-weight: 400;
    font-size: 12px;
    color: #DC3545;
    line-height: 18px;
}

p.error-message > a {
    color: #DC3545;
}

/*.email-invalid {*/
/*    background: #F9E0E2;*/
/*    border-radius: 20px;*/
/*    padding: 0px 20px 16px 30px;*/
/*    box-shadow: 0px 8px 10px #F9E0E2;*/
/*}*/

[data-lang] {
    display: none;
}

html[lang="pl"] [data-lang="pl"],
html[lang="en"] [data-lang="en"] {
    display: inline;
}

