#sign-in-section {
    box-sizing: border-box;
    width: 100%;
    height: 88dvh;
    padding: 0 10%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

#sign-in-hint {
    box-sizing: border-box;
    width: 50%;
    height: 76dvh;
    background: rgba(255, 235, 59, 0.5);
    border-radius: 5rem;
    padding: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

#sign-in-hint-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
}

#sign-in-hint-logo {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

#sign-in-hint-logo img {
    width: 5rem;
    height: auto;
    filter: grayscale(1) brightness(0);
}

#sign-in-hint-logo span {
    font-size: 1rem;
    line-height: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 1);
}

#sign-in-hint-slogan {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#sign-in-hint-slogan span {
    font-size: 2rem;
    line-height: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
}

#sign-in-hint-description {
    width: 100%;
    font-size: 1rem;
    line-height: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 1);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

#sign-in-hint-description span {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, 1);
}

#sign-in-hint-description button {
    background: rgba(0, 0, 0, 1);
    color: rgba(255, 235, 59, 0.7);
    border: 1px solid rgba(255, 235, 59, 0.7);
}

#sign-in-hint-description button:hover {
    color: rgba(0, 0, 0, 1);
    border: 1px solid rgba(0, 0, 0, 1);
}

#sign-in-form {
    box-sizing: border-box;
    width: 50%;
    border-radius: 0 5rem 5rem 0;
    padding: 5% 0 5% 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

#sign-in-form #title {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    line-height: 3rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 235, 59, 0.8);
}

#sign-in-form #direct-sign-in {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

#choose-user-type {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

#types {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 1rem;
}

#types .type {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

#types .type i {
    font-size: 2.5rem;
}

#types .type:hover,
#types .type.active {
    color: rgba(0, 0, 0, 1);
    background: rgba(255, 235, 59, 0.5);
}

#google-sign-in-label {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    font-size: 2.5rem;
    line-height: 3rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 235, 59, 0.8);
}

#sign-in-form #direct-sign-in #google-sign-in {
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.8);
    box-sizing: border-box;
    background: rgba(0, 0, 0, 1);
    border-radius: 1rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: relative;
    width: 100%;
}

#sign-in-form #direct-sign-in #google-sign-in #g_id_signin {
    opacity: 0 !important;
    position: absolute !important;
    top: 20% !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    z-index: 1 !important;
}

#sign-in-form #direct-sign-in #google-sign-in #google-sign-in-btn {
    position: relative;
    z-index: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#sign-in-form #direct-sign-in #google-sign-in #google-sign-in-btn i {
    font-size: 2rem;
}

#sign-in-form #direct-sign-in #google-sign-in:hover {
    color: rgba(0, 0, 0, 1);
    background: rgba(255, 235, 59, 0.5);
}