body.dashboard-bg {
    min-height: 120vh;
    font-family: 'Instrument Sans', sans-serif;
    margin: 0;
}
.main-content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    width: 100%;
}

.main-card {
    background: rgba(255,255,255,0.9);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    padding: 2.5rem;
    margin-top: 4rem;
    max-width: 700px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.main-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1b1b18;
    text-align: center;
}
.main-desc {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #706f6c;
    text-align: center;
}
.highlight {
    color: #a78bfa;
    font-weight: 600;
}
.main-action-btn {
    padding: 1rem 2rem;
    background: #a78bfa;
    color: #fff;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(124,58,237,0.12);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-decoration: none;
}
.main-action-btn:hover {
    background: #7c3aed;
}
.logout{
    padding-top: 12px;
    padding-left: 23px;
    height: 45px;
    width: 110px;
    margin-top: 15px;
    margin-left: 600px;
}
.overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}
.overlay-card {
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    padding: 2rem;
    width: 350px;
    position: relative;
}
.overlay-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}
.overlay-close:hover {
    color: #1b1b18;
}
.overlay-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1b1b18;
    text-align: center;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #1b1b18;
}
.form-group input {
    width: 92%;
    padding: 0.5rem 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border 0.2s;
}
.form-group input:focus {
    border-color: #a78bfa;
}
.form-btn {
    width: 100%;
    height: 40px;
    padding: 0.75rem;
    background: #a78bfa;
    color: #fff;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}
.form-btn:hover {
    background: #7c3aed;
}
.overlay-footer {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
}
.link-btn {
    color: #a78bfa;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 0.5rem;
    font-size: 1rem;
}
.hidden {
    display: none !important;
}
.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.or-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #888; /* warna teks */
  margin: 20px 0; /* jarak atas-bawah */
  font-weight: bold;
}

.or-divider::before,
.or-divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc; /* garis tipis */
  margin: 0 10px; /* jarak antara garis dan teks */
}
.google-btn {
    background:#4285F4;
    display:flex;
    align-items:center;
    justify-content:center;
    width: 92%;
}


.section-highlight {
    background-color: #f9fafb;
    padding: 3rem 2rem;
    margin-top: 6rem;
}

.highlight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.highlight-text {
    width: 750px;
    text-align: justify;
}

.highlight-subtitle {
    color: #8a53f8;
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.highlight-desc {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.highlight-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
}

.highlight-btn.primary {
    background-color: #10b981;
    color: white;
}

.highlight-btn.secondary {
    color: #1f2937;
    background-color: transparent;
}

.highlight-btn.primary:hover {
    background-color: #059669;
}

.highlight-image {
    flex: 1;
    text-align: center;
}

.highlight-image img {
    max-width: 100%;
    height: auto;
}
