:root {
    --side-padding: 20px;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: #ffffff;
    /*background-image: url('../../img/background.jpg');*/
    /*background-size: cover;*/
    /*background-position: 0% 50%;*/
}

.wrapper {
    width: 430px;
    border: none;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    transition-duration: 0.3s;
}

.wrapper>h1 {
    font-size: 20px;
    text-align: center;
    margin: 0px;
    margin-top: 20px;
}

.logo-container {
    position: relative;
    margin: 16px auto;
    width: 400px;
    height: 49px;
    overflow: hidden;
}

.logo-container>img {
    position: absolute;
    width: 566px;
    top: -53px;
    left: 3px;
    -webkit-user-drag: none;
}

.wrapper_main {
    display: flex;
    flex-direction: column;
    margin-top: 6px;
    margin-left: var(--side-padding);
    margin-right: var(--side-padding);
    margin-bottom: 20px;
}

.wrapper_top {
    display: flex;
    flex-direction: column;
}

.wrapper_input-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 8px;
    margin-bottom: 8px;
}

.wrapper_input-item>a {
    color: #2b2b2b;
}

.wrapper_input-item>input {
    width: 100%;
    padding: 8px;
    padding-left: 32px;
    margin-top: 3px;
    border: none;
    border-radius: 5px;
    background-color: #ededed;
    background-position: 4px 50%;
    background-size: 24px;
    background-repeat: no-repeat;
    box-sizing: border-box;
    font-size: 15px;
    transition-duration: 0.2s;
}

.wrapper_input-item>input:focus {
    background-color: #dbdbdb;
    border: none;
    outline: none;
}

.wrapper_input-password-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.wrapper_button-forgot-password {
    font-weight: 600;
    color: #285aff;
    cursor: pointer;
    transition-duration: 0.3s;
}

.wrapper_button-forgot-password:hover {
    color: #0031d2;
}

#input_login-email {
    background-image: url('../../img/svg/email.svg');
}

#input_login-password {
    background-image: url('../../img/svg/key.svg');
}

.wrapper_middle {
    display: flex;
    flex-direction: column;
}

.wrapper_button-login {
    margin-top: -6px;
    color: #285aff;
    cursor: pointer;
    transition-duration: 0.3s;
}

.wrapper_button-login:hover {
    color: #0031d2;
}

.wrapper_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

#button-login {
    width: 124px;
}

#button-signup {
    background: transparent;
    width: 156px;
}

#button-signup:hover {
    background: #00000024;
}

.wrapper_inner_button {
    display: flex;
    align-items: center;
}

.wrapper_inner_button>a {
    font-size: 16px;
    margin-right: 6px;
    margin-bottom: 3px;
    text-wrap: nowrap;
    user-select: none;
}

#button-login .wrapper_inner_button>a {
    margin-right: 0px;
}

.wrapper_inner_button>svg {
    width: 20px;
    height: auto;
}

.wrapper_log-message {
    display: flex;
    align-items: center;
    color: #a70000;
}

.wrapper_log-message>svg {
    width: 18px;
    height: 18px;
    margin-right: 3px;
}

.log-message-text {
    margin-bottom: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #a70000;
}

.cf-turnstile {
    margin-top: 30px;
}