.login-container {
    width: 100%;
    height: 100%;
    background-color: var(--main-background-color);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.title {
    position:absolute;
    top:100px;
    left:50%;
    transform: translate(-50%,-50%);
    width: 200px;
    height: 48px;

    margin-bottom: 85px;

    background-image: url("./login_assets/rs_logo.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.login-form {
    width: 440px;
    height: 376px;

    padding: 24px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    background-color: var(--main-background-color);
}

.login-title {
    height: 32px;
    width: 100%;

    margin-bottom: 24px;

    text-align: center;
    font-size: 28px;
    font-weight: bold;

    color: var(--text-color-1);
}

.text-input {
    width: 100%;
    height: 40px;

    padding: var(--input-padding);

    font-size: 16px;
    line-height: 20px;

    border:solid 2px var(--input-border-color);
    border-radius: 8px;

    outline: none;
}

.password-block {
    width: 100%;
    height: 40px;

    position: relative;
}

.eye-icon {
    position: absolute;
    right: var(--input-margin);
    top: calc(2px + var(--input-margin));
    color:rgba(0,0,0,0.5);

    width:20px;
    height:20px;

    background-image:url("./login_assets/password_invisible.png");
    background-repeat:no-repeat;
    background-size:contain;
    background-color:transparent;

    cursor: pointer;
}

.checkbox-container {
    height: 20px;
    width: 100%;

    margin-top:8px;
    margin-bottom:8px;

    font-size: 14px;
    font-weight:500;
    color:var(--text-color-1);
}

.email-input {
    margin-top: 0px;
    margin-bottom: var(--input-margin);
}

.password-input {
    margin-top: var(--input-margin);
    margin-bottom: var(--input-margin);
}

.login-submit-button{
    width:100%;
    height:52px;
    padding:16px;

    background-color: var(--dark-blue);
    color:white;

    border-radius: 6px;
    border-style:none;
    outline:none;
}

.forgot-password{
    text-decoration:none;
    color:inherit;
    font-weight:bold;
    margin-top:30px;
}

.request-access{
    color:grey;
    margin-top:5px;
}

.access-link{
    color:var(--text-color-1);
    font-weight:bold;
    cursor:pointer;
}