@import url("https://rsms.me/inter/inter.css");

:root {
    font-family: Inter, sans-serif;
    font-feature-settings: 'liga' 1, 'calt' 1; /* fix for Chrome */
}

@supports (font-variation-settings: normal) {
    :root {
        font-family: InterVariable, sans-serif;
    }
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: InterVariable, 'Helvetica', 'Arial', sans-serif;
}

.session-screen__background {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
}

.session-screen__container {
    background: white;
    width: 440px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    box-shadow: 0 3px 5px -3px rgba(0, 0, 0, .1), 0 8px 10px 1px rgba(0, 0, 0, .12), 0 3px 14px 2px rgba(0, 0, 0, .08);
}

.session-screen__container.session-screen__container--no-media {
    width: 420px;
    height: auto;
}

.session-screen__content {
    padding: 20px 0px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.session-screen__content-header {
    padding: 0px 20px 10px 0px;
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.session-screen__content-header-left > img {
    height: 24px;
    width: auto;
}

.session-screen__content-main {
    flex: 1;
    padding-right: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.session-screen__content-main > .q-field:not(:last-of-type) {
    margin-bottom: 20px;
}

.session-screen__form-title {
    font-family: InterDisplay, sans-serif;
    font-size: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin-top: 4px;
    margin-bottom: 12px;
    color: #333333;
}

.session-screen__form-text {
    font-family: InterVariable, sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #777777;
}

.session-screen__form-input {
    margin-bottom: 8px;
    position: relative;
    width: 100%;
    height: 50px;
}

.session-screen__form-input label {
    width: 100%;
    font-size: 11px;
    line-height: 20px;
    padding-bottom: 30px;
    color: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

.session-screen__form-input label:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.24);
    bottom: 0px;
    transition: all ease-in-out .12s;
}

.session-screen__form-input:hover label:before {
    border-color: rgba(0, 0, 0, 0.6);
}

.session-screen__form-input label:after {
    content: '';
    display: block;
    position: absolute;
    width: 0px;
    border-bottom: 2px solid #555555;
    bottom: 0px;
    transition: all ease-in-out .12s;
}

.session-screen__form-input input {
    position: absolute;
    font-size: 14px;
    width: 100%;
    height: 30px;
    border: none;
    box-shadow: none;
    outline: none;
    background: transparent;
    left: 0px;
    top: 20px;
}

.session-screen__form-input input:focus + label {
    color: #555555;
}

.session-screen__form-input input:focus + label:after {
    width: 100%;
}

a.session-screen__forgot-password, a.session-screen__forgot-password:link, a.session-screen__forgot-password:visited {
    font-weight: 500;
    color: #222222;
    display: block;
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: #777777;
    -webkit-transition: ease-in-out .2s;
    transition: ease-in-out .2s;
}
a.session-screen__forgot-password:hover, a.session-screen__forgot-password:active {
    color: #000000;
    text-decoration-style: solid;
    text-decoration-color: #555555;
}

.session-screen__actions {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.session-screen__actions > .q-btn {
    padding: 0px 10px;
}

.session-screen__action-button {
    width: 100%;
    height: 36px;
    padding: 0px 16px;
    border: 1px solid #999999;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: InterVariable, sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #777777;
    transition: ease-in-out .12s .05s;
    background: transparent;
}

.session-screen__action-button--microsoft {
    margin-top: 6px;
}

.session-screen__action-button:hover, .session-screen__action-button:focus {
    outline: none;
    background: #EFEFEF;
}

.session-screen__action-button--primary {
    border-color: #333333;
    color: #333333;
}

.session-screen__action-button--primary:hover, .session-screen__action-button--primary:focus {
    background: #EFEFEF;
}

.session-screen__action-button > .session-screen__action-button-icon {
    margin-right: 8px;
    width: 20px;
    height: 20px;
}

.session-screen__action-button > .q-icon {
    margin-right: 8px;
}

.session-screen__action-button > .session-screen__action-button-text {
    max-width: 300px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.session-screen__another-google-account-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 13px;
    font-weight: 500;
    transition: all ease-in-out .12s;
}

.session-screen__another-google-account-link, .session-screen__another-google-account-link:link, .session-screen__another-google-account-link:visited {
    color: #999999;
    text-decoration: underline;
    text-decoration-style: dashed;
    text-decoration-color: #DDDDDD;
}

.session-screen__another-google-account-link:hover, .session-screen__another-google-account-link:active {
    color: #777777;
    text-decoration-style: solid;
    text-decoration-color: #999999;
}

.session-screen__action-divider {
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0px;
}

.session-screen__action-divider-text {
    font-family: InterDisplay, sans-serif;
    font-size: 16px;
    line-height: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.24);
    padding: 0px 10px;
    display: flex;
    margin-top: -2px;
}

.session-screen__action-divider::before, .session-screen__action-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.24);
}

.session-screen__error-container {
    pointer-events: none;
    left: 0;
    right: 0;
    bottom: 10px;
    position: absolute;
    display: flex;
    justify-content: center;
}

.session-screen__error {
    background-color: white;
    border-left: 4px solid #E74C3C;
    box-shadow: 0 5px 5px -3px rgba(153, 153, 153, .2), 0 8px 10px 1px rgba(153, 153, 153, .14), 0 3px 14px 2px rgba(153, 153, 153, .12);
    margin-bottom: 80px;
    padding: 0px 20px 0px 16px;
    border-radius: 4px;
    max-width: 540px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.session-screen__error-icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
}

.session-screen__error--kind-info {
    border-left-color: #3498DB;
}

.session-screen__error-message {
    flex: 1;
    color: #555555;
    font-size: 14px;
    padding: 15px 0px;
}

.session-screen__right-button-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    margin-top: 4px;
}

.session-screen__right-button-wrapper > .q-btn {
    padding: 0px 8px;
}

.session-screen__ip-weather-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: right;
    padding: 6px 12px;
    margin-top: 24px;
    margin-bottom: -40px;
}

.session-screen__weather-icon {
    width: 24px;
    height: auto;
    margin-left: -8px;
}

.session-screen__ip-weather-text {
    display: flex;
    flex-direction: column;
    padding-left: 10px;
}

.session-screen__weather {
    font-family: InterDisplay, sans-serif;
    font-weight: 600;
    color: #999999;
    text-transform: capitalize;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.session-screen__ip {
    color: #999999;
    font-size: 12px;
}
