.login-background {
    width: 100vw;
    height: 100vh;
    background-color: #FAFAFA;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.login {
    max-width: 400px;
    width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.company-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.company-logo > img {
    width: 240px;
}

.login-tab {
    width: 100%;
    height: 45px;
    border: 1px solid var(--point-button-color);
    border-radius: 5px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 35px;
}

.login-tab > a {
    width: 100%;
    height: 100%;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: var(--point-button-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-tab > a.active {
    background-color: var(--point-button-color);
    color: #FFFFFF;
}

.login-tab > a > i {
    font-size: 20px;
    margin-right: 6px;
}

.login-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
}

.login-form > input {
    width: 100%;
    height: 45px;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 0 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #9D9D9D;
    margin-bottom: 10px;
}

.login-form > input::placeholder {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #9D9D9D;
}

.login-form > input:focus {
    outline: none;
}

.login-form > div {
    width: 100%;
    margin-bottom: 16px;
}

.login-form > div > span {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #FF4D4D;
}

.login-form > button {
    width: 100%;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--point-button-color);
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #FFFFFF;
}

.login-recover-action {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 20px;
}

.login-recover-action > a, .login-recover-action > button {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: var(--point-button-color);
}

.login-recover-action > *:not(:last-child) {
    margin-right: 10px;
}

.login-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
}

.login-separator > span {
    margin: 0 10px;
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #DADADA;
}

.login-separator > div {
    flex-grow: 1;
    border-top: 1px solid #DADADA;
}

.external-auth {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.external-auth > a {
    width: 100%;
    height: 44px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid #DADADA;
}

.external-auth > a:first-child {
   border: 1px solid var(--point-button-color);
}

.external-auth > a:not(:last-child) {
    margin-bottom: 11px;
}

.external-auth > a > img {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 20px;
}

.external-auth > a > span {
    font-weight: 400;
    font-size: 12px;
    line-height: 17px;
    color: #4A4A4A;
}

.external-auth > a:first-child > span {
    color: var(--point-button-color);
}
