/* Gaya Kustom untuk Mencocokkan Desain */
body {
    background-color: #f0fff0; /* Warna latar belakang hijau muda sangat pucat */
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    padding: 30px;
    text-align: center;
}

.tree-icon {
    color: #28a745; /* Warna hijau untuk ikon pohon */
    font-size: 3rem;
    margin-bottom: 10px;
}

.text-green {
    color: #28a745 !important; /* Warna hijau standar Bootstrap */
}

.btn-green {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
    padding: 10px 0;
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-green:hover {
    background-color: #1e7e34;
    border-color: #1e7e34;
    color: white;
}

/* Gaya untuk pesan error */
.alert-error-custom {
    background-color: #f8d7da; /* Merah muda pucat */
    color: #721c24; /* Merah gelap */
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.back-to-dashboard {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #28a745;
    text-decoration: none;
    font-weight: 500;
}