* {
    font-family: "Inter", sans-serif;
}

form {
    width: 60%;
    min-width: 320px;
}

.input-auth {
    position: relative;
    width: 100%;
    border: 1px solid #68C1DD;
    border-radius: 8px;
    padding: 11px;

    &::placeholder {
        color: #BDBDBD;
    }
}

.input-password-wrapper {
    position: relative;

    & .input-auth {
        padding-right: 80px;
    }

    & .show-password {
        border: none;
        background-color: transparent;
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        color: #7D7DC8;
        cursor: pointer;
        padding: 0 16px;
        height: 100%
    }
}

.text-button-auth {
    border: none;
    background-color: transparent;
    display: block;
    position: relative;
    margin: auto;
    font-size: 1rem;
    font-weight: 500;
}

.btn-auth {
    border: none;
    background-color: #00254A;
    display: block;
    position: relative;
    color: white;
    width: 100%;
    border-radius: 100px;
    font-size: 1rem;
    font-weight: 500;
    padding: 10px 0;
    margin: auto;
}

.checkbox-auth:checked {
    background-color: #00254A;
}