
html, body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.app {
    width: 100%;
    min-height: 100vh;
}
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin-bottom: 60px;
 
}


/*Sign up btn*/
.signup-btn {
    width: 100%;
    margin-top: 25px;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #7C3AED;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    .signup-btn:disabled {
        opacity: .7;
        cursor: not-allowed;
    }

.spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.35);
    border-top-color: white;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.app {
    background-color: #ffffff !important;
}

.landing-body {
    display: flex;
    width: 100%;
    height: calc(100vh - 80px);
}

.events-sidebar {
    width: 380px;
    flex-shrink: 0;
    overflow-y: auto;
}

.map-container {
    flex: 1;
    min-width: 0;
}

#map {
    width: 100%;
    height: 100%;
}