@import url("https://fonts.googleapis.com/css?family=Inter:300,400,600&display=swap");

html,
body {
    display: flex;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: black;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
    align-items: center;
    justify-content: center;
}

.image {
    width: 50%;
    height: 100%;
    background-image: url("./assets/asset-2-min.png");
    background-size: cover;
    background-position: center;
}

.actor-image {
    width: 50%;
    height: 100%;
    background-image: url("./assets/asset-3-min.png");
    background-size: cover;
    background-position: center;
}

.main {
    display: flex;
    height: 100%;
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

.main svg {
    margin-bottom: 50px;
}

p {
    width: 360px;
    margin-top: 20px;
    padding: 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 300;
    text-align: center;
    color: black;
    text-decoration: underline;
}

p a {
    color: black;
    text-decoration: underline;
}

.signed-in-as {
    margin: 0 0 7px 0;
    padding: 0;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    text-align: center;
    color: black;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

.actor-welcome {
    width: 360px;
    margin: 0 0 20px 0;
    padding: 0;
    font-size: 20px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    color: black;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

#user-name {
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 32px;
    line-height: 39px;
    font-weight: 500;
    text-align: center;
    color: black;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}

::placeholder {
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.2);
}

input,
select {
    width: 360px;
    height: 55px;
    margin-bottom: 15px;
    /* keep symmetric padding so text inside inputs is visually centered */
    padding: 0 20px;
    font-size: 15px;
    line-height: 18px;
    font-weight: 300;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 980px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background-color: white;
    color: black;
}

input:focus,
select:focus {
    border-color: black;
}

select {
    color: rgba(0, 0, 0, 0.2);
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='black' stroke-opacity='0.2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 16px;
}

select:valid {
    color: black;
}

select::-webkit-inner-spin-button,
select::-webkit-outer-spin-button {
    appearance: none;
    margin: 0;
}

select::-ms-expand {
    display: none;
}

button {
    width: 360px;
    height: 55px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    color: white;
    background-color: black;
    border-radius: 980px;
    border: none;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease 0.02s;
    font-family: 'Inter', sans-serif;
}

button:hover {
    background-color: #333333;
}

#sign-in-state,
#sign-out-state {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

#sign-out-state {
    display: none;
}

#sign-out-state button {
    margin-top: 30px;
    padding: 12px 40px;
}

#signin-form {
    width: 360px;
    margin: 0 auto;
}

#signin-form input,
#signin-form select,
#signin-form button {
    width: 100%;
    box-sizing: border-box;
}

.terms-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 9999;
}

.alert-contain {
    display: flex;
    width: 300px;
    flex-direction: column;
    padding: 14px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 34px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.alert-message {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
}

.alert-text {
    display: block;
    max-width: 100%;
    margin: 0;
    padding: 8px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 300;
    letter-spacing: -0.4px;
    text-align: left;
    color: black;
    text-decoration: none;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.terms-link {
    text-decoration: underline;
    cursor: pointer;
}

.alert-accept {
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 16px 13px;
    font-size: 17px;
    line-height: 22px;
    font-weight: 500;
    letter-spacing: -0.4px;
    color: white;
    background-color: black;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease 0.02s;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 1000px) {
    .image, .actor-image {
        display: none;
    }

    .main {
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 450px) {
    svg {
        width: 360px;
        height: 36px;
    }

    input,
    select,
    button {
        width: 360px;
    }
}
