.logo {
    width: clamp(48px, 20%, 128px);
}
.logo img {
    width: 100%;
}

.reminder {
    /* flex-grow: 1; */
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.reminder p {
    margin: 0;
    line-height: 1.7;
}
.gps-icon-container {
    width: 3.25rem;
    margin: 0;
}
.gps-icon-container svg {
    width: 100%;
    height: 100%;
    fill: var(--success);
}
.gps-text {
    margin-bottom: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

.btn-sign-in {
    width: 100%;
    background-color: #317BFF;
    color: #FFFFFF;
    border: 1px solid transparent;
    border-radius: 8px;
    min-height: 48px;
    font-weight: 600;
    /* margin-bottom: 1rem; */
    font-size: 1.075rem;
}
.btn-sign-in:not(:disabled):hover {
    cursor: pointer;
    background-color: var(--primary-hover);
}
.btn-sign-in:disabled {
    background-color: #a8a8a8;
    opacity: 0.75;
}