
body {
    /*background: #f1f1f1;*/
    color: #222222;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



.gradient-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.9), rgba(0, 0, 255, 0.1), rgba(128, 0, 128, 0.1), rgba(238, 130, 238, 0.1));
    background-size: 500% 500%;
    animation: gradientAnimation 15s ease infinite;
    margin: 0;
}

.gradient-container--no-center {
    justify-content: flex-start;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.wrapper {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 30px;
    width: 830px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.auth-container__wrapper, .invite-container__wrapper {
    width: 350px;
}

.auth-container__content, .invite-container__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.invite-container__content {
    align-items: center;
    gap: 25px;
}

.auth_options {
    /*display: grid;*/
    /*grid-template-columns: 1fr;*/
    /*grid-template-columns: 1fr 1fr;*/
    gap: 10px;
}

.auth_options div {
    display: flex;
    flex-direction: row;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px SOLID #D0D0D0;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    /* width: 150px; */
    justify-content: center;
}

.auth_options div:hover {
    background: #f1f1f1;
    border: 1px SOLID #f1f1f1;
}

.auth_options div img {
    height: 22px;
    margin-right: 7px;
}

.form--label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #222222;
}

.form--error {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #EA4335;
}

.form--input {
    width: auto;
    padding: 9px 12px;
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-weight: normal;
    font-size: 12px;
    border: 4px SOLID #eae7e1;
    background: transparent;
}


.form--button {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    padding: 12px 20px;
    background-color: #43454A;
    border-radius: 5px;
    border: 0;
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: center;
    text-align: -webkit-center;
}