.container {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #d1d1d1;
}

.login-contianer {
    width: 40vw;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.google-sign-up {
    background-color: #fff;
    width: auto;
    cursor: pointer;
}

.google-sign-up>img {
    height: 4em;
    width: 18em;
}

.login-input {
    width: 90%;
    margin: 1em auto;
    height: 2.5em;
    border: 1px solid #d1d1d1;
    border-radius: 4px;
    padding-left: 0.5em;
}

.login-button {
    width: 90%;
    margin: 1em auto;
}

.seller-container {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgb(2, 0, 36);
    background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(92, 92, 184, 1) 0%, rgba(45, 220, 255, 1) 100%);
}

.seller-login-container {
    margin: 10% 25% 2em 22%;
    width: 47%;
    min-height: 30%;
    background-color: #fff;
    padding: 2em;
    box-shadow: 6px 12px 60px rgb(0 0 0 / 20%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.seller-login-elements-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
}

.seller-heading {
    margin-top: 1em;
    font-size: 1.5rem;
    line-height: 1.2em;
    margin-bottom: 0.25rem;
}

.seller-subheading {
    font-size: 1rem;
    margin: 0;
    line-height: 1.5rem;
    text-transform: none;
    margin-bottom: 1.25rem;
}

.seller-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.seller-input-label {
    width: 100%;
    font-size: 12px;
    line-height: 1.5rem;
    margin-bottom: 0.25rem;
}

.seller-input-phone {
    width: 97%;
    height: 2.5em;
    padding-left: 2%;
    margin: 0.25em 0 0.5em 0;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    outline: none;
    border: 1px solid #8c9196;
}

.seller-button {
    width: 100%;
    font-weight: 600;
    padding: 0.6em 0;
    background-color: rgba(0, 128, 96, 1);
    color: white;
    border-radius: 4px;
    margin-top: 0.25em;
    cursor: pointer;
    font-size: 18px;
}

.phone-number-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 97%;
    height: 3em;
    padding-left: 2%;
    margin: 0.25em 0 0.5em 0;
}

.phone-number-container>input {
    width: 100%;
    margin: 0;
    background: transparent;
    font-size: 16px;
}

.no-border {
    border: none;
}

.border {
    border-radius: 4px;
    border: 1px solid #8c9196;
}

.phone-number-extension {
    border-right: 1px solid #8c9196;
    height: 2.5em;
    font-size: 16px;
    font-weight: 600;
    padding-right: 2%;
    margin-right: 2%;
    display: flex;
    justify-content: center;
    align-items: center;
}