 body {
            font-family: 'Poppins', sans-serif;
            background-color: #f0f5fa; /* Warna background biru muda sesuai gambar */
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
        }

        .login-card {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            width: 100%;
            max-width: 450px;
        }

        .logo-text {
            color: #ffc107; /* Warna kuning popcorn */
            font-weight: 700;
            font-size: 32px;
            letter-spacing: 2px;
            text-align: center;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .subtitle {
            color: #333;
            text-align: center;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 30px;
        }

        .form-label {
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
        }

        .form-control {
            border: 1px solid #dce1e7;
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            transition: all 0.3s;
        }

        .form-control:focus {
            border-color: #1a6a2a;
            box-shadow: none;
        }

        .input-group-text {
            background-color: transparent;
            border-left: none;
            color: #999;
            cursor: pointer;
        }

        .password-field {
            border-right: none;
        }

        .options-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 15px;
            margin-bottom: 30px;
            font-size: 13px;
        }

        .form-check-input:checked {
            background-color: #1a6a2a;
            border-color: #1a6a2a;
        }

        .form-check-label {
            color: #888;
        }

        .forgot-link {
            text-decoration: none;
            color: #4a90e2;
        }

        .btn-submit {
            background-color: #1a6a2a; /* Warna hijau tua sesuai gambar */
            border: none;
            border-radius: 8px;
            padding: 12px;
            width: 100%;
            color: white;
            font-weight: 600;
            font-size: 16px;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background-color: #145220;
        }

        /* Alert styling */
        .alert {
            font-size: 13px;
            border-radius: 8px;
        }
        .type-selector {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        .type-tab {
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            color: #999;
            transition: all 0.3s ease;
            position: relative;
            padding-bottom: 5px;
        }
        .type-tab.active {
            color: #ffc107; /* Warna merah sesuai highlight di gambar */
            border-bottom: 2px solid #d32f2f;
        }
        .type-tab:hover {
            color: #d32f2f;
        }