:root {
    --ucc-green-primary: #4598be;
    --ucc-green: #4598be;
    --ucc-light: #f8f9fa;
}

.navbar-custom {
    background: linear-gradient(135deg, var(--ucc-green-primary), #6398a5);
}

.login-btn {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 15px;
    border-radius: 6px;
    transition: all 0.3s;
}

.login-btn:hover {
    background: rgba(255,255,255,0.3);
}

.hero-section {
    text-align: center;
    padding: 120px 0 80px;
    color: #333;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    background: white;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--ucc-green-primary);
    margin-bottom: 15px;
}

.btn-green-primary {
    background: var(--ucc-green-primary);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
}

.btn-green-primary:hover {
    background: #4598be;
    color: white;
}

.btn-outline-green {
    border: 1px solid var(--ucc-green-primary);
    color: var(--ucc-green-primary);
    padding: 10px 20px;
    border-radius: 6px;
}

.btn-outline-green:hover {
    background: var(--ucc-green-primary);
    color: white;
}

footer {
    background: #f8f9fa;
    padding: 20px 0;
    margin-top: 50px;
    color: #666;
    border-top: 1px solid #eee;
}

#ucc-logo {
    height: 40px;
    margin-right: 10px;
}

.nav-title {
    font-weight: 600;
    font-size: 1.1em;
}

.admin-badge {
    background: #dc3545;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 10px;
}

.error-message {
    color: #dc3545;
    font-size: 0.9em;
    margin-top: 5px;
}

.success-message {
    color: #28a745;
    font-size: 0.9em;
    margin-top: 5px;
}

/*  */

        .password-input-group {
            position: relative;
        }
        .password-toggle {
            position: absolute;
            right: 12px;
            top: 70%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6c757d;
            cursor: pointer;
            padding: 8px;
            border-radius: 4px;
            transition: all 0.2s;
            z-index: 10;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .password-toggle:hover {
            color: #198754;
            background-color: #f8f9fa;
        }
        .password-input-group .form-control {
            padding-right: 45px;
            height: 45px;
        }
        .form-control:focus {
            border-color: #198754;
            box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
        }
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            color: #333;
        }
        .login-info {
            background: #e8f5e8;
            border-left: 4px solid #388e3c;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }
        .login-info h6 {
            color: #388e3c;
            margin-bottom: 5px;
        }