body {
    background-color: #eef1fb;
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

input {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

#sign-in-with-apple-id {
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid black;
    background-color: black;
    transform: scale(0.6);
    margin-top: 1rem;
}

#password {
    margin-bottom: 20px !important;
}

#login-button {
    margin-top: 3rem;
}

#error {
    color: red;
    text-align: center;
}

#before-send-request-error {
    color: red;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.display-none {
    display: none !important;
}

#mode-options-list {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 2rem;
}

#instruction {
    text-align: center;
    max-width: 50vw;
    margin: 0 auto;
}

.mode-option {
    width: 30%;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.mode-option:hover {
    transform: scale(1.05);
}

.mode-options-content:hover {
    fill: #3b3bff;
}

.ring-gray-300 {
    border: 1px solid #d3cece !important;
}

#profile-icon-link:hover {
    fill: blue;
}

#profile-icon-link {
    margin-right: 2rem;
}



@media (max-width: 700px) {
    body {
        padding: 1rem;
    }

    #mode-options-list {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .mode-option {
        width: 100%;
        margin-bottom: 2rem;
    }

    #instruction {
        text-align: center;
        max-width: unset;
    }

}

@media (min-width: 700px) and (max-width: 900px) {
    #mode-options-list {
        flex-direction: column;
    }

    .mode-option {
        width: 70%;
        margin-bottom: 2rem;
    }

    #instruction {
        text-align: center;
        max-width: 75vw;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    #profile-icon-link {
        margin-right: 1rem;
    }
}