@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1f2937;
}

/* Custom Colors */
.text-brand { color: #10b981 !important; } /* Warna hijau mirip target */
.bg-brand { background-color: #10b981 !important; }

/* Tombol Custom */
.btn-brand {
    background-color: #10b981;
    color: white;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: all 0.2s;
}

.btn-brand:hover {
    background-color: #059669;
    color: white;
}

.btn-outline-brand {
    background-color: transparent;
    color: #1f2937;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 20px;
    font-weight: 500;
}

.btn-outline-brand:hover {
    background-color: #f3f4f6;
}

/* Card Pemendek URL */
.shortener-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f3f4f6;
    padding: 30px;
}

/* Input Form */
.form-control-custom {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
}

.form-control-custom:focus {
    background-color: #ffffff;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

/* Ikon Fitur */
.feature-icon {
    width: 32px;
    height: 32px;
    background-color: #ecfdf5;
    color: #10b981;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}
