:root {
    --white: #FFFFFF;
    --gray: #989898;

    --red10: #D11229;
    --red20: #D40411;
    --red30: #D40512;

    --blue200: #4a75aa;

    --yellow: #FEC812;
}

/*  */
.nostyle-input {
    border: none;
    background: none;
    box-shadow: none;
    appearance: none;
    outline: none;
    /* -webkit-appearance: none; */
    /* -moz-appearance: none; */
    /*pointer-events: none;*/
}

.nostyle-btn {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
}

.nostyle-a {
    text-decoration: none;
}

/*  */


.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.login-wrapper__img {
    transition: 0.3s;
}

.login-form-container::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -15px;
    width: 15px;
    height: 340px;
    background: linear-gradient(230deg, transparent 10%, var(--yellow) 9%);
}

.login-form-container::after {
    content: "";
    position: absolute;
    bottom: -10px;
    right: -15px;
    width: 340px;
    height: 15px;
    background: linear-gradient(50deg, transparent 10%, var(--yellow) 9%);
}

.login-form-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 300px;
    width: 280px;
    padding: 10px;
    background-color: white;
}

.login-container__header {
    position: relative;
    height: 10%;
    line-height: 0px;
}

.login-form {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    height: 70%;
    width: 100%;
}

.login-container__footer {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 20%;
    width: 85%;
}

.login-form__input-container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 55px;
    width: 100%;
}

.login-form__label {
    margin-left: 15px;
}

.login-form__input {
    width: 95%;
    align-self: center;
    height: 30px;
    border: 1px solid var(--gray);
    box-shadow: 2px 2px 0px 0px var(--red30);
}

.login-form__actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.login-form__submit-btn {
    padding: 10px 25px;
    background-color: var(--red20);
    color: var(--white);
    font-size: 13px;
}

.login-form__register-link {
    color: var(--blue200);
}

.login-form__link {
    color: var(--red10);
}

.login-form__icon {
    width: 40px;
    height: 40px;
}

.eye-icon {
    position: absolute;
    cursor: pointer;
    right: 20px;
    z-index: 100;
    top: 28px;
}

.hidden{
    display: none;
}

/* .q {
    position: absolute;
    right: 20px;
    z-index: 100;
    top: 30px;
} */

@media screen and (min-width: 300px) and (max-width: 768px) {
    .login-wrapper__img {
        opacity: 0;
        width: 0px;
        height: 0px;
    }
}

@media screen and (min-width: 768px) {

    .login-container {
        position: relative;
    }

    .login-wrapper__img {
        position: absolute;
        top: -55%;
        left: -115%;
        opacity: 1;
        z-index: 9;
    }

    .login-form-container {
        z-index: 10;
    }
}