:root {
    --pink-light: #ffb6c1;
    --pink-main: #ff69b4;
    --pink-dark: #ff1493;
    --blue-light: #87cefa;
    --blue-main: #00bfff;
    --blue-dark: #008b8b;
    --bg: #f6f8fb;
    --panel: rgba(255, 255, 255, 0.85);
    --text: #1f2937;
    --muted: #65758b;
    --line: rgba(255, 255, 255, 0.5);
    --primary: var(--pink-main);
    --primary-dark: var(--pink-dark);
    --accent: var(--blue-main);
    --danger: #b91c1c;
    --warning: #a16207;
    --safe: #15803d;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--blue-light) 100%);
    background-attachment: fixed;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

h1, h2, h3, h4 {
    color: var(--primary-dark);
}

a {
    color: var(--primary);
    text-decoration: none;
}

.topbar {
    align-items: center;
    background: var(--panel);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 20px;
    justify-content: space-between;
    min-height: 64px;
    padding: 0 28px;
}

.brand {
    color: var(--text);
    font-size: 20px;
    font-weight: 700;
}

.topbar nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 28px;
}

.hero {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
    padding: 36px 0;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.05;
    margin: 0 0 16px;
}

.hero p,
.muted {
    color: var(--muted);
}

.panel,
.card,
.table-wrap {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.panel {
    padding: 22px;
}

.grid {
    display: grid;
    gap: 18px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    padding: 18px;
}

.card h3,
.panel h2,
.blob-card h2 {
    margin-top: 0;
}

.actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.button,
button,
input[type="submit"] {
    background: var(--primary);
    border: 0;
    border-radius: 25px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 700;
    min-height: 42px;
    padding: 10px 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
}

.button:hover,
button:hover,
input[type="submit"]:hover {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.4);
}

.button.small,
button.small {
    min-height: 34px;
    padding: 7px 11px;
}

.button.secondary {
    background: var(--accent);
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
}

.button.secondary:hover {
    background: linear-gradient(45deg, var(--accent), var(--primary));
}

.button.danger,
button.danger {
    background: var(--danger);
}

form {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 700;
}

input,
select,
textarea {
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text);
    font: inherit;
    padding: 10px 12px;
    width: 100%;
    transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.alert {
    border-radius: 8px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.alert.success {
    background: #dcfce7;
    color: #166534;
}

.alert.error,
.badge.danger {
    background: #fee2e2;
    color: var(--danger);
}

.alert.warning,
.badge.warning {
    background: #fef3c7;
    color: var(--warning);
}

.badge.safe {
    background: #dcfce7;
    color: var(--safe);
}

.badge {
    border-radius: 999px;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 10px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    border-collapse: collapse;
    min-width: 720px;
    width: 100%;
}

th,
td {
    border-bottom: 1px solid var(--line);
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

th {
    background: var(--accent);
    color: white;
}

.question {
    border-top: 1px solid var(--line);
    padding: 18px 0;
}

.option-row {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: 54px 1fr 92px;
}

.mood-picker {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mood-picker label {
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 18px;
    min-height: 110px;
    justify-content: center;
}

.mood-picker input {
    width: auto;
}

.mood-icon {
    display: block;
    font-size: 34px;
    font-weight: 700;
}

.media {
    margin-top: 12px;
    max-width: 100%;
    width: 100%;
}

.media-frame {
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 8px;
    margin-top: 12px;
    width: 100%;
}

@media (max-width: 800px) {
    .topbar,
    .hero,
    .grid.two,
    .grid.three,
    .mood-picker {
        grid-template-columns: 1fr;
    }

    .topbar {
        align-items: flex-start;
        display: grid;
        padding: 16px;
    }

    .container {
        padding: 18px;
    }

    .option-row {
        grid-template-columns: 1fr;
    }
}

/* ----------------------------------------------
 * Generated by Animista on 2026-5-6 8:16:22
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation bounce-in-top
 * ----------------------------------------
 */
.bounce-in-top {
    -webkit-animation: bounce-in-top 1.1s both;
            animation: bounce-in-top 1.1s both;
}

@-webkit-keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

@keyframes bounce-in-top {
  0% {
    -webkit-transform: translateY(-500px);
            transform: translateY(-500px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: translateY(-65px);
            transform: translateY(-65px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  81% {
    -webkit-transform: translateY(-28px);
            transform: translateY(-28px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  95% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2026-5-6 8:18:16
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation puff-in-tr
 * ----------------------------------------
 */
.puff-in-tr {
	-webkit-animation: puff-in-tr 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        animation: puff-in-tr 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-tr {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-tr {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: 100% 0%;
            transform-origin: 100% 0%;
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

/* ----------------------------------------------
 * Blob Card Animation
 * ---------------------------------------------- */
.blob-card {
  position: relative;
  border-radius: 14px;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1), -20px -20px 60px rgba(255, 255, 255, 0.5);
}

.blob-card .bg {
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  z-index: 2;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(24px);
  border-radius: 10px;
  overflow: hidden;
  outline: 2px solid white;
}

.blob-card .blob {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: var(--pink-main);
  opacity: 1;
  filter: blur(12px);
  animation: blob-bounce 5s infinite ease;
}

.blob-card .blob-content {
  position: relative;
  z-index: 3;
  padding: 27px;
}

@keyframes blob-bounce {
  0% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
  25% { transform: translate(-100%, -100%) translate3d(100%, 0, 0); }
  50% { transform: translate(-100%, -100%) translate3d(100%, 100%, 0); }
  75% { transform: translate(-100%, -100%) translate3d(0, 100%, 0); }
  100% { transform: translate(-100%, -100%) translate3d(0, 0, 0); }
}

/* ----------------------------------------------
 * Login Cards (Uiverse.io by kamehame-ha)
 * ---------------------------------------------- */ 
.login-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 16px;
}

.login-cards .red {
  background-color: #f43f5e;
}

.login-cards .blue {
  background-color: #3b82f6;
}

.login-cards .green {
  background-color: #22c55e;
}

.login-cards .purple {
  background-color: #a855f7;
}

.login-cards .login-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  height: 100px;
  width: 200px;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  transition: 400ms;
  text-decoration: none;
}

.login-cards .login-card p.tip {
  font-size: 1em;
  font-weight: 700;
  margin: 0;
  color: white;
}

.login-cards .login-card p.second-text {
  font-size: .7em;
  margin: 5px 0 0;
  color: white;
}

.login-cards .login-card:hover {
  transform: scale(1.1, 1.1);
  z-index: 10;
}

.login-cards:hover > .login-card:not(:hover) {
  filter: blur(10px);
  transform: scale(0.9, 0.9);
}

/* ----------------------------------------------
 * Custom Login Form
 * ---------------------------------------------- */
.u-login-container {
  max-width: 350px;
  margin: 20px auto;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 40px;
  padding: 25px 35px;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: rgba(255, 105, 180, 0.3) 0px 30px 30px -20px;
}

.u-login-heading {
  text-align: center;
  font-weight: 900;
  font-size: 30px;
  color: var(--pink-dark);
}

.u-login-form {
  margin-top: 20px;
  display: block;
}

.u-login-form .u-login-input {
  width: 100%;
  background: white;
  border: none;
  padding: 15px 20px;
  border-radius: 20px;
  margin-top: 15px;
  box-shadow: rgba(255, 182, 193, 0.5) 0px 10px 10px -5px;
  border-inline: 2px solid transparent;
  box-sizing: border-box;
}

.u-login-form .u-login-input::-moz-placeholder {
  color: rgb(170, 170, 170);
}

.u-login-form .u-login-input::placeholder {
  color: rgb(170, 170, 170);
}

.u-login-form .u-login-input:focus {
  outline: none;
  border-inline: 2px solid var(--pink-main);
}

.u-login-button {
  width: 100%;
  max-width: 350px;
  height: 50px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  border: 2px solid var(--pink-main);
  overflow: hidden;
  border-radius: 30px;
  color: var(--pink-dark);
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
}

.u-login-button .btn-txt {
  z-index: 1;
  font-weight: 800;
  letter-spacing: 2px;
}

.u-login-button.type1::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.5s ease-in-out;
  background-color: var(--pink-main);
  border-radius: 30px;
  visibility: hidden;
  height: 10px;
  width: 10px;
  z-index: -1;
}

.u-login-button:hover {
  box-shadow: 1px 1px 200px var(--pink-light);
  color: #fff;
  border-color: transparent;
}

.u-login-button.type1:hover::after {
  visibility: visible;
  transform: scale(100) translateX(2px);
}

.u-login-agreement {
  display: block;
  text-align: center;
  margin-top: 15px;
}

.u-login-agreement a {
  text-decoration: none;
  color: var(--blue-main);
  font-size: 13px;
  font-weight: bold;
}

/* ----------------------------------------------
 * Jelly Button (Top Bar)
 * ---------------------------------------------- */
.btn-jelly {
  position: relative;
  min-width: 110px;
  height: 42px;
  padding: 0 20px;
  border-radius: 45px;
  border: none;
  background-color: var(--pink-main);
  color: white;
  box-shadow: 0px 10px 10px var(--pink-light) inset,
  0px 5px 10px rgba(5, 5, 5, 0.212),
  0px -10px 10px var(--pink-dark) inset;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  text-decoration: none;
}

.btn-jelly::before {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.678);
  content: "";
  filter: blur(1px);
  top: 5px;
  border-radius: 50%;
}

.btn-jelly::after {
  width: 70%;
  height: 2px;
  position: absolute;
  background-color: rgba(250, 250, 250, 0.137);
  content: "";
  filter: blur(1px);
  bottom: 5px;
  border-radius: 50%;
}

.btn-jelly:hover {
  animation: jello-horizontal 0.9s both;
  color: white;
}

@keyframes jello-horizontal {
  0% { transform: scale3d(1, 1, 1); }
  30% { transform: scale3d(1.25, 0.75, 1); }
  40% { transform: scale3d(0.75, 1.25, 1); }
  50% { transform: scale3d(1.15, 0.85, 1); }
  65% { transform: scale3d(0.95, 1.05, 1); }
  75% { transform: scale3d(1.05, 0.95, 1); }
  100% { transform: scale3d(1, 1, 1); }
}

/* ----------------------------------------------
 * Logout Button (Uiverse.io by vinodjangid07)
 * ---------------------------------------------- */
.Btn-logout {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: .3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: rgb(255, 65, 65);
  padding: 0;
  text-decoration: none;
}

.Btn-logout .sign {
  width: 100%;
  transition-duration: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Btn-logout .sign svg {
  width: 17px;
}

.Btn-logout .sign svg path {
  fill: white;
}

.Btn-logout .text {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: white;
  font-size: 1em;
  font-weight: 600;
  transition-duration: .3s;
}

.Btn-logout:hover {
  width: 125px;
  border-radius: 40px;
  transition-duration: .3s;
}

.Btn-logout:hover .sign {
  width: 30%;
  transition-duration: .3s;
  padding-left: 20px;
}

.Btn-logout:hover .text {
  opacity: 1;
  width: 70%;
  transition-duration: .3s;
  padding-right: 10px;
}

.Btn-logout:active {
  transform: translate(2px ,2px);
}

/* ----------------------------------------------
 * 3D Tree Animation (Uiverse.io by NlghtM4re)
 * ---------------------------------------------- */
.tree-container {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  pointer-events: none; /* Penting: agar animasi ini tidak menghalangi klik mouse Anda di UI lain */
}

.tree {
  position: relative;
  width: 50px;
  height: 50px;
  transform-style: preserve-3d;
  transform: rotateX(-20deg) rotateY(30deg);
  animation: treeAnimate 5s linear infinite;
}

@keyframes treeAnimate {
  0% { transform: rotateX(-20deg) rotateY(360deg); }
  100% { transform: rotateX(-20deg) rotateY(0deg); }
}

.tree div {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: translateY(calc(25px * var(--x))) translateZ(0px);
}

.tree div.branch span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #69c069, #77dd77);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-bottom: 5px solid #00000019;
  transform-origin: bottom;
  transform: rotateY(calc(90deg * var(--i))) rotateX(30deg) translateZ(28.5px);
}

.tree div.stem span {
  position: absolute;
  top: 110px;
  left: calc(50% - 7.5px);
  width: 15px;
  height: 50%;
  background: linear-gradient(90deg, #bb4622, #df7214);
  border-bottom: 5px solid #00000019;
  transform-origin: bottom;
  transform: rotateY(calc(90deg * var(--i))) translateZ(7.5px);
}

.tree-container .shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  filter: blur(20px);
  transform-style: preserve-3d;
  transform: rotateX(90deg) translateZ(-65px);
}

/* ----------------------------------------------
 * Theme Switch (Uiverse.io) & Dark Mode
 * ---------------------------------------------- */
.switch {
  font-size: 17px;
  position: relative;
  display: inline-block;
  width: 4em;
  height: 2.2em;
  border-radius: 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #2a2a2a;
  transition: 0.4s;
  border-radius: 30px;
  overflow: hidden;
}

.slider:before {
  position: absolute;
  content: "";
  height: 1.2em;
  width: 1.2em;
  border-radius: 20px;
  left: 0.5em;
  bottom: 0.5em;
  transition: 0.4s;
  transition-timing-function: cubic-bezier(0.81, -0.04, 0.38, 1.5);
  box-shadow: inset 8px -4px 0px 0px #fff;
}

.switch input:checked + .slider {
  background-color: #00a6ff;
}

.switch input:checked + .slider:before {
  transform: translateX(1.8em);
  box-shadow: inset 15px -4px 0px 15px #ffcf48;
}

.star {
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  width: 5px;
  transition: all 0.4s;
  height: 5px;
}

.star_1 { left: 2.5em; top: 0.5em; }
.star_2 { left: 2.2em; top: 1.2em; }
.star_3 { left: 3em; top: 0.9em; }

.switch input:checked ~ .slider .star {
  opacity: 0;
}

.cloud {
  width: 3.5em;
  position: absolute;
  bottom: -1.4em;
  left: -1.1em;
  opacity: 0;
  transition: all 0.4s;
}

.switch input:checked ~ .slider .cloud {
  opacity: 1;
}

/* Tema Mode Malam Dominan Hitam/Putih/Abu */
body.dark-mode {
    --pink-light: #2c2c2c;
    --pink-main: #555555;
    --pink-dark: #aaaaaa;
    --blue-light: #1a1a1a;
    --blue-main: #444444;
    --blue-dark: #777777;
    --bg: #121212;
    --panel: rgba(30, 30, 30, 0.85);
    --text: #f3f4f6;
    --muted: #9ca3af;
    --line: rgba(255, 255, 255, 0.1);
    --primary: #555555;
    --primary-dark: #ffffff;
    --accent: #444444;
    background: linear-gradient(135deg, #111111 0%, #333333 100%);
}

body.dark-mode .button,
body.dark-mode button,
body.dark-mode input[type="submit"] {
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

body.dark-mode .button:hover,
body.dark-mode button:hover,
body.dark-mode input[type="submit"]:hover {
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

body.dark-mode .blob-card .bg {
    background: rgba(30, 30, 30, 0.95);
    outline: 2px solid #555;
}

body.dark-mode .blob-card .blob {
    background-color: #555;
}

body.dark-mode .login-cards .red,
body.dark-mode .login-cards .blue,
body.dark-mode .login-cards .green,
body.dark-mode .login-cards .purple {
    background-color: #333;
    border: 1px solid #555;
}

body.dark-mode .u-login-container {
    background: linear-gradient(0deg, #222 0%, #111 100%);
    border-color: #444;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 30px 30px -20px;
}

body.dark-mode .u-login-heading {
    color: #fff;
}

body.dark-mode .u-login-form .u-login-input {
    background: #333;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 10px 10px -5px;
}

body.dark-mode .u-login-button {
    background: transparent;
    border-color: #555;
    color: #fff;
}

body.dark-mode .u-login-button.type1::after {
    background-color: #555;
}

body.dark-mode .u-login-button:hover {
    box-shadow: 1px 1px 200px #333;
    border-color: transparent;
}

body.dark-mode .u-login-agreement a {
    color: #bbb;
}

body.dark-mode .btn-jelly {
    background-color: #444;
    box-shadow: 0px 10px 10px #666 inset,
    0px 5px 10px rgba(0, 0, 0, 0.5),
    0px -10px 10px #222 inset;
}
