
/* auth Page */
.auth-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.auth-form {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0px;
}

.auth-input {
    display: flex;
    flex-direction: column;
    margin: 0px;
}



.auth-submit button {
    margin: 0px;
    height: 100%;
    width: 100%;
    background-color: #ea4c88;
}

.other-auth-option {
    text-align: center;
}

.auth-input input {
    padding: 10px;
    border-radius: 4px;
    border: none;
    font-size: 16px;
    margin-bottom: 0px;
    margin-right: 0px;
    margin-left: 0px;
    background-color: #3b4148;
    height: 30px;
}

.with-image {
    margin: 0px;
    margin-bottom: 2px;
    margin-right: 2px;
    flex: 1;
    border-radius: 4px;
    background-color: #282c30;
}


.with-image i {
    width: 20px;
    margin-left: 8px;
}

.other-auth-option a {
    color: gray;
}